diff options
| author | James Bennett <ubernostrum@gmail.com> | 2009-07-29 04:10:05 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2009-07-29 04:10:05 +0000 |
| commit | 1349c7bd62e9a2447e7689d28f83f13d046e8d05 (patch) | |
| tree | 1c7ce6ee0ba704d71ac688be8dcbc5b1ba96090b | |
| parent | 31f2b85bcba766e7c48fd0fd6f4a702fed7bb0ff (diff) | |
We don't need to put the 'final' bit in the version number, and it messes up some pypi stuff.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11358 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/__init__.py b/django/__init__.py index 7d05f7073e..3721524617 100644 --- a/django/__init__.py +++ b/django/__init__.py @@ -7,9 +7,8 @@ def get_version(): if VERSION[3:] == ('alpha', 0): version = '%s pre-alpha' % version else: - version = '%s %s' % (version, VERSION[3]) if VERSION[3] != 'final': - version = '%s %s' % (version, VERSION[4]) + version = '%s %s %s' % (version, VERSION[3], VERSION[4]) from django.utils.version import get_svn_revision svn_rev = get_svn_revision() if svn_rev != u'SVN-unknown': |
