diff options
-rw-r--r-- | CHANGES | 3 | ||||
-rw-r--r-- | RepSys/rpmutil.py | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -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") |