X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/2075ed66ad7cca695634c0a862126ea3ff66ea2e..dcacc3b4c2ba2f550806a2d22b183f6fac4f63ff:/forum/settings/__init__.py diff --git a/forum/settings/__init__.py b/forum/settings/__init__.py index 218f114..1458599 100644 --- a/forum/settings/__init__.py +++ b/forum/settings/__init__.py @@ -4,17 +4,17 @@ from base import Setting, SettingSet, BaseSetting from django.forms.widgets import Textarea from django.utils.translation import ugettext_lazy as _ from django.conf import settings as djsettings -from django.utils.version import get_svn_revision +from django.utils.version import get_git_changeset from forum.modules import get_modules_script_implementations OSQA_VERSION = "Development Build" -SVN_REVISION = get_svn_revision(djsettings.SITE_SRC_ROOT) +VCS_REVISION = get_git_changeset() # We'll have to keep in mind this variable on every release. -if SVN_REVISION == u'SVN-unknown': - SVN_REVISION = u'SVN-1000' +if VCS_REVISION == u'SVN-unknown': + VCS_REVISION = u'SVN-1000' MAINTAINANCE_MODE = Setting('MAINTAINANCE_MODE', None)