Skip to content

Commit 34e9bae

Browse files
authored
Merge pull request #258 from RockefellerArchiveCenter/issue-257
Coerce timestamp to string
2 parents 4a382bd + 35ad12d commit 34e9bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def invalidate_cache(self, audience, branch):
172172
'/*',
173173
]
174174
},
175-
'CallerReference': datetime.now().timestamp().replace('.', '')
175+
'CallerReference': str(datetime.now().timestamp()).replace('.', '')
176176
}
177177
)
178178

0 commit comments

Comments
 (0)