Skip to content

Commit f7861a5

Browse files
authored
Merge pull request #158 from trautmane/fix_default_create_timestamp_for_stacks
fixed minor bug where minute was being used as month for the default …
2 parents c55e0cb + 928c0c5 commit f7861a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renderapi/stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self, cycleNumber=None, cycleStepNumber=None,
5050
self.stackResolutionZ = stackResolutionZ
5151
self.mipmapPathBuilder = mipmapPathBuilder
5252
self.materializedBoxRootPath = materializedBoxRootPath
53-
self.createTimestamp = (strftime('%Y-%M-%dT%H:%M:%S.00Z') if
53+
self.createTimestamp = (strftime('%Y-%m-%dT%H:%M:%S.00Z') if
5454
createTimestamp is None else createTimestamp)
5555
self.versionNotes = versionNotes
5656

0 commit comments

Comments
 (0)