oxjs fails if version contains letters
This commit is contained in:
parent
c8dc68bf64
commit
da43cd75e1
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class MainHandler(OMLHandler):
|
||||||
path = os.path.join(settings.static_path, 'html', 'oml.html')
|
path = os.path.join(settings.static_path, 'html', 'oml.html')
|
||||||
with open(path) as fd:
|
with open(path) as fd:
|
||||||
content = fd.read()
|
content = fd.read()
|
||||||
version = settings.MINOR_VERSION
|
version = settings.MINOR_VERSION.split('-')[0]
|
||||||
if version == 'git':
|
if version == 'git':
|
||||||
version = int(time.mktime(time.gmtime()))
|
version = int(time.mktime(time.gmtime()))
|
||||||
content = content.replace('oml.js?1', 'oml.js?%s' % version)
|
content = content.replace('oml.js?1', 'oml.js?%s' % version)
|
||||||
|
|
Loading…
Reference in a new issue