aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--RepSys/rpmutil.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index cb649df..fb28031 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+* 1.6.20
+- fixed bad url used when using -v in getsrpm
+
* 1.6.19
- added complement for SILENT: CLOG, which hides everything that does not
start with this token
diff --git a/RepSys/rpmutil.py b/RepSys/rpmutil.py
index 865e2dd..69692f1 100644
--- a/RepSys/rpmutil.py
+++ b/RepSys/rpmutil.py
@@ -58,7 +58,7 @@ def get_srpm(pkgdirurl,
patchdir = "--define '_patchdir %s/%s'" % (tmpdir, "SOURCES")
try:
if mode == "version":
- geturl = os.path.join(pkgdirurl, "versions",
+ geturl = os.path.join(pkgdirurl, "releases",
version, release)
elif mode == "pristine":
geturl = os.path.join(pkgdirurl, "pristine")