Skip to content

Commit 28e4bb7

Browse files
authored
Merge pull request #591 from cchampet/fix_samLsExplodeSequences
sam ls: fix --explode-sequences option
2 parents fbb46fb + c663842 commit 28e4bb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

applications/sam/sam_ls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def _printItem(self, item, args, level):
9595
sequence = item.getSequence()
9696
for frameRange in sequence.getFrameRanges():
9797
# for each frame range, print a new item as sequence
98-
subSequence = sequenceParser.Sequence(sequence.getPrefix(), sequence.getPadding(), sequence.getSuffix(), frameRange.first, frameRange.last, frameRange.step)
98+
subSequence = sequenceParser.Sequence(sequence.getPrefix(), sequence.getFixedPadding(), sequence.getMaxPadding(), sequence.getSuffix(), frameRange.first, frameRange.last, frameRange.step)
9999
if subSequence.__str__() not in self._sequenceExploded:
100100
self._sequenceExploded.append(subSequence.__str__())
101101
sequenceExploded = True

libraries/tuttle/src/tuttle/host/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// This is more than the version of the host: this is the version of the 'tuttle bundle' (host + plugins + sam).
55
#define TUTTLE_HOST_VERSION_MAJOR 0
66
#define TUTTLE_HOST_VERSION_MINOR 13
7-
#define TUTTLE_HOST_VERSION_MICRO 4
7+
#define TUTTLE_HOST_VERSION_MICRO 5
88

99
#define TUTTLE_HOST_VERSION_STR \
1010
BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MAJOR) "." BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MINOR) "." BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MICRO)

0 commit comments

Comments
 (0)