We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d41f35 commit 3fbdb0eCopy full SHA for 3fbdb0e
paramgenerator/generateparams.py
@@ -82,7 +82,8 @@ def handleTimeParam(timeParam):
82
83
def handleTimeDurationParam(timeParam):
84
#print timeParam.year
85
- res = str(timegm(date(year=timeParam.year, month=timeParam.month, day=timeParam.day).timetuple()))
+ res = str(timegm(date(year=int(timeParam.year),
86
+ month=int(timeParam.month), day=int(timeParam.day)).timetuple())*1000)
87
res += "|"+str(timeParam.duration)
88
return res
89
0 commit comments