Skip to content

Commit

Permalink
Merge pull request #591 from cchampet/fix_samLsExplodeSequences
Browse files Browse the repository at this point in the history
sam ls: fix --explode-sequences option
  • Loading branch information
cchampet authored Mar 16, 2017
2 parents fbb46fb + c663842 commit 28e4bb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion applications/sam/sam_ls.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _printItem(self, item, args, level):
sequence = item.getSequence()
for frameRange in sequence.getFrameRanges():
# for each frame range, print a new item as sequence
subSequence = sequenceParser.Sequence(sequence.getPrefix(), sequence.getPadding(), sequence.getSuffix(), frameRange.first, frameRange.last, frameRange.step)
subSequence = sequenceParser.Sequence(sequence.getPrefix(), sequence.getFixedPadding(), sequence.getMaxPadding(), sequence.getSuffix(), frameRange.first, frameRange.last, frameRange.step)
if subSequence.__str__() not in self._sequenceExploded:
self._sequenceExploded.append(subSequence.__str__())
sequenceExploded = True
Expand Down
2 changes: 1 addition & 1 deletion libraries/tuttle/src/tuttle/host/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// This is more than the version of the host: this is the version of the 'tuttle bundle' (host + plugins + sam).
#define TUTTLE_HOST_VERSION_MAJOR 0
#define TUTTLE_HOST_VERSION_MINOR 13
#define TUTTLE_HOST_VERSION_MICRO 4
#define TUTTLE_HOST_VERSION_MICRO 5

#define TUTTLE_HOST_VERSION_STR \
BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MAJOR) "." BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MINOR) "." BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MICRO)
Expand Down

0 comments on commit 28e4bb7

Please sign in to comment.