fixed bug in last commit, thanks Harkirat

This commit is contained in:
Massimo Di Pierro
2012-05-17 17:52:27 -05:00
parent 16ff6cef08
commit 672f093e15
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-05-17 15:55:39) dev
Version 2.00.0 (2012-05-17 17:51:51) dev
+1 -1
View File
@@ -868,7 +868,7 @@ class Auth(object):
if os.path.exists(filename):
key = open(filename,'r').read().strip()
else:
key = alg+web2py_uuid()
key = alg+':'+web2py_uuid()
open(filename,'w').write(key)
return key