Changes for 1.6 svn

svn: r21117
This commit is contained in:
Doug Blank 2013-01-14 18:38:44 +00:00
parent cf1456319f
commit ccc0b540da

View File

@ -41,10 +41,13 @@ def get_svn_revision(path=""):
# subprocess worked
if stdout: # has output
stdout = cuni(stdout) # get a proper string
if " " in stdout: # one of svnversion's non-version responses:
if (" " in stdout) or (stdout == "exported"):
# one of svnversion's 1.7 non-version responses:
# 'Unversioned directory'
# 'Unversioned file'
# 'Uncommitted local addition, copy or move'
# svnversion's 1.6 non-version response:
# 'exported'
return ""
else:
return "-r" + stdout