We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0231c41 commit b61953aCopy full SHA for b61953a
client/livecli/commands/upload.py
@@ -13,6 +13,7 @@
13
# limitations under the License.
14
15
import argparse
16
+from datetime import datetime
17
import logging
18
import sys
19
from typing import Optional
@@ -57,6 +58,13 @@ def upload_main(options: argparse.Namespace) -> None:
57
58
logging.error('Can not detect the feed type: %s', feed_path)
59
sys.exit(1)
60
61
+ if feed_type == types.FeedType.CONTEST:
62
+ for time_key in ['start', 'freeze', 'end']:
63
+ time = data['times'][time_key]
64
+ if isinstance(time, str):
65
+ timestamp = datetime.fromisoformat(time).timestamp()
66
+ data['times'][time_key] = int(timestamp)
67
+
68
feeds[feed_type] = data
69
70
client.set_feeds(feeds)
0 commit comments