Skip to content

Commit 928c0c5

Browse files
committed
fixed minor bug where minute was being used as month for the default create timestamp when creating a stack
1 parent 7208b41 commit 928c0c5

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)