Changing all text files to explicitly have .txt endings. This helps online code browsers to properly identify the files.

This commit is contained in:
Griatch 2012-09-02 13:05:47 +02:00
parent af99a80b4b
commit 056fee5c70
8 changed files with 18 additions and 5 deletions

View file

@ -248,7 +248,7 @@ def get_evennia_version():
Check for the evennia version info.
"""
try:
f = open(settings.BASE_PATH + os.sep + "VERSION", 'r')
f = open(settings.BASE_PATH + os.sep + "VERSION.txt", 'r')
return "%s-r%s" % (f.read().strip(), os.popen("hg id -i").read().strip())
except IOError:
return "Unknown version"