Fixed #5237 -- Added an optional 'path' argument to get_svn_revision(). Thanks, django@poelzi.org

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-08-24 03:53:04 +00:00
parent 3a4b139636
commit 4652c96de1
1 changed files with 8 additions and 2 deletions

View File

@ -2,16 +2,22 @@ import django
import os.path
import re
def get_svn_revision():
def get_svn_revision(path=None):
"""
Returns the SVN revision in the form SVN-XXXX,
where XXXX is the revision number.
Returns SVN-unknown if anything goes wrong, such as an unexpected
format of internal SVN files.
If path is provided, it should be a directory whose SVN info you want to
inspect. If it's not provided, this will use the root django/ package
directory.
"""
rev = None
entries_path = '%s/.svn/entries' % django.__path__[0]
if path is None:
path = django.__path__[0]
entries_path = '%s/.svn/entries' % path
if os.path.exists(entries_path):
entries = open(entries_path, 'r').read()