Skip to content

Commit 5cc4143

Browse files
committed
Fix serialization
1 parent 615e48c commit 5cc4143

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paramgenerator/generateparamsbi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def serialize_q3(outdir, post_months):
141141
writer = ParamsWriter(outdir, "q3", ["year", "month"] )
142142
for post_month in post_months:
143143
t = time.gmtime(post_month[0][0]/1000)
144-
writer.append([t.tm_year, t.tm_mon])
144+
writer.append([str(t.tm_year), str(t.tm_mon)])
145145

146146
def serialize_q4(outdir, tagclasses, countries):
147147
writer = ParamsWriter(outdir, "q4", ["tagClass", "country"])

0 commit comments

Comments
 (0)