Fix invalid numeric literals

stix2.1
Greg Back 2017-02-01 12:50:43 -06:00
parent 15e9ff8da6
commit 26ed0389ea
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import stix2
amsterdam = pytz.timezone('Europe/Amsterdam')
eastern = pytz.timezone('US/Eastern')
FAKE_TIME = datetime.datetime(2017, 01, 01, 12, 34, 56, tzinfo=pytz.utc)
FAKE_TIME = datetime.datetime(2017, 1, 1, 12, 34, 56, tzinfo=pytz.utc)
# Inspired by: http://stackoverflow.com/a/24006251