Fix: remove timezone

This commit is contained in:
ECAILLE Fabrice (externe)
2017-03-17 10:33:29 +01:00
parent b94e82de06
commit 17c5561d14

View File

@@ -84,7 +84,7 @@ while (flag):
ip = faker.ipv4() ip = faker.ipv4()
dt = otime.strftime('%d/%b/%Y:%H:%M:%S') dt = otime.strftime('%d/%b/%Y:%H:%M:%S')
tz = datetime.datetime.now(pytz.timezone('US/Pacific')).strftime('%z') tz = datetime.datetime.now().strftime('%z')
vrb = numpy.random.choice(verb,p=[0.6,0.1,0.1,0.2]) vrb = numpy.random.choice(verb,p=[0.6,0.1,0.1,0.2])
uri = random.choice(resources) uri = random.choice(resources)