mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +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
|
||||
# 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()
|
||||
|
|
Loading…
Add table
Reference in a new issue