mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-09 09:58:39 +00:00
Fix #552 wrong gentoo svn folder for grabbing revision
This commit is contained in:
parent
251b1733ce
commit
a36938729b
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -61,7 +61,7 @@ try:
|
||||||
break
|
break
|
||||||
# Try to get the SVN revision on Gentoo systems
|
# Try to get the SVN revision on Gentoo systems
|
||||||
if revision_string == "":
|
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:
|
for line in stdout:
|
||||||
if line.split(" ")[0] == "Revision:":
|
if line.split(" ")[0] == "Revision:":
|
||||||
revision_string = line.split(" ")[1].strip()
|
revision_string = line.split(" ")[1].strip()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue