Skip to content

Commit b61953a

Browse files
committed
client: Support isoformat string in contest time
1 parent 0231c41 commit b61953a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

client/livecli/commands/upload.py

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
import argparse
16+
from datetime import datetime
1617
import logging
1718
import sys
1819
from typing import Optional
@@ -57,6 +58,13 @@ def upload_main(options: argparse.Namespace) -> None:
5758
logging.error('Can not detect the feed type: %s', feed_path)
5859
sys.exit(1)
5960

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+
6068
feeds[feed_type] = data
6169

6270
client.set_feeds(feeds)

0 commit comments

Comments
 (0)