Removed version-check that required hg.

This commit is contained in:
Griatch 2014-01-23 01:17:39 +01:00
parent 2c4a0a5fc8
commit 443a29d63f
3 changed files with 9 additions and 2 deletions

7
.gitignore vendored
View file

@ -19,6 +19,13 @@ lib
lib64
__pycache__
# Other
*.swp
*.log
*.pid
*.restart
*.db3
# Installer logs
pip-log.txt

View file

@ -16,7 +16,7 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
#------------------------------------------------------------
try:
f = open(os.pardir + os.sep + 'VERSION.txt', 'r''')
VERSION = "%s-r%s" % (f.read().strip(), os.popen("hg id -i").read().strip())
VERSION = "%s" % f.read().strip()
f.close()
except IOError:
VERSION = "Unknown version"

View file

@ -281,7 +281,7 @@ def get_evennia_version():
"""
try:
f = open(settings.BASE_PATH + os.sep + "VERSION.txt", 'r')
return "%s-r%s" % (f.read().strip(), os.popen("hg id -i").read().strip())
return "%s-r%s" % (f.read().strip(), os.popen("git log --format=\"%H\" -n 1").read().strip())
except IOError:
return "Unknown version"