Skip to content
This repository was archived by the owner on Dec 5, 2018. It is now read-only.

Commit 697963e

Browse files
author
caaespin
committed
Typo variable
1 parent f767641 commit 697963e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

luigi-interface/monitor.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,13 +232,13 @@ def get_consonance_status(consonance_uuid):
232232

233233
# Timestamp format: 2017-03-10T18:37:06.230+0000
234234
# Date = str[:10] to get only YYYY-MM-DD
235-
create_date = created[:10]
236-
update_date = updated[:10]
235+
created_date = created[:10]
236+
updated_date = updated[:10]
237237

238238
# Time = str[11:16] shaves the timestamp
239239
# to just hours and minutes
240-
create_time = created[11:16]
241-
update_time = updated[11:16]
240+
created_time = created[11:16]
241+
updated_time = updated[11:16]
242242

243243
created = created_date + " " + created_time
244244
updated = updated_date + " " + updated_time

0 commit comments

Comments
 (0)