diff options
-rwxr-xr-x | release.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release.py b/release.py index c7b773363..03cd2eb91 100755 --- a/release.py +++ b/release.py @@ -110,10 +110,10 @@ class Project: end = s.find(s2, i + 1) description = s[start:end] - s1 = "GNOME SVN" + s1 = "homepage" i = s.find(s1) s1 = "href" - i = s.find(s1, i) + i = s.rfind(s1, 0, i) start = i + 6 s2 = '">' end = s.find(s2, start) |