Fix #552 wrong gentoo svn folder for grabbing revision

This commit is contained in:
Andrew Resch 2008-10-18 03:57:26 +00:00
parent 251b1733ce
commit a36938729b

View File

@ -61,7 +61,7 @@ try:
break
# Try to get the SVN revision on Gentoo systems
if revision_string == "":
stdout = os.popen("svn info /usr/portage/distfiles/svn-src/deluge/deluge-0.6")
stdout = os.popen("svn info /usr/portage/distfiles/svn-src/deluge/trunk")
for line in stdout:
if line.split(" ")[0] == "Revision:":
revision_string = line.split(" ")[1].strip()