Django

Code

Show
Ignore:
Timestamp:
06/11/07 09:51:26 (2 years ago)
Author:
mtredinnick
Message:

unicode: Merged changes from trunk up to [5460].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/unicode

    • Property svnmerge-integrated changed from /django/trunk:1-5443 to /django/trunk:1-5460
  • django/branches/unicode/django/__init__.py

    r4914 r5462  
    11VERSION = (0, 97, 'pre') 
     2 
     3def get_version(): 
     4    "Returns the version as a human-format string." 
     5    v = '.'.join([str(i) for i in VERSION[:-1]]) 
     6    if VERSION[-1]: 
     7        v += '-' + VERSION[-1] 
     8    return v