We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5551a34 commit 87841f4Copy full SHA for 87841f4
utils/setversion.py
@@ -1,12 +1,12 @@
1
-#!/usr/bin/env python2.7
+#!/usr/bin/env python3.6
2
from datetime import date
3
import json
4
5
6
# Set the version in manifest.json to one based on today's date.
7
8
t = date.today()
9
-version = `t.year` +'.'+ `t.month` +'.'+ `t.day`
+version = repr(t.year) +'.'+ repr(t.month) +'.'+ repr(t.day)
10
11
f = open('chromium/manifest.json')
12
manifest = json.loads(f.read())
0 commit comments