Skip to content

Commit 87841f4

Browse files
committed
Convert utils/setversion.py to py3.6
1 parent 5551a34 commit 87841f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/setversion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
#!/usr/bin/env python2.7
1+
#!/usr/bin/env python3.6
22
from datetime import date
33
import json
44

55

66
# Set the version in manifest.json to one based on today's date.
77

88
t = date.today()
9-
version = `t.year` +'.'+ `t.month` +'.'+ `t.day`
9+
version = repr(t.year) +'.'+ repr(t.month) +'.'+ repr(t.day)
1010

1111
f = open('chromium/manifest.json')
1212
manifest = json.loads(f.read())

0 commit comments

Comments
 (0)