summaryrefslogtreecommitdiffstats
path: root/webapp/django/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/__init__.py')
-rw-r--r--webapp/django/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/webapp/django/__init__.py b/webapp/django/__init__.py
new file mode 100644
index 0000000000..d0f42e562a
--- /dev/null
+++ b/webapp/django/__init__.py
@@ -0,0 +1,9 @@
+VERSION = (1, 0, 'beta_1')
+
+def get_version():
+ "Returns the version as a human-format string."
+ v = '.'.join([str(i) for i in VERSION[:-1]])
+ if VERSION[-1]:
+ from django.utils.version import get_svn_revision
+ v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision())
+ return v