summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-09-20 13:31:47 -0700
committerJesse Keating <jkeating@redhat.com>2010-09-20 13:31:47 -0700
commitd95a4d0146cd236d3fe51291ee1c68a7b027994c (patch)
tree991c16aade2115bba11bea875b57e491f4027b5a
parent72531d43ecceaee02ac1f46a056ea6403ecc3ee4 (diff)
downloadfedora-packager-d95a4d0146cd236d3fe51291ee1c68a7b027994c.tar.gz
fedora-packager-d95a4d0146cd236d3fe51291ee1c68a7b027994c.tar.xz
fedora-packager-d95a4d0146cd236d3fe51291ee1c68a7b027994c.zip
Don't use the unnecessary getnvr()
-rwxr-xr-xsrc/fedpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 70ce711..5441e08 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -698,7 +698,7 @@ def tag(args):
if not tagname or args.clog:
mymodule = pyfedpkg.PackageModule(args.path)
if not tagname:
- tagname = mymodule.getnvr()
+ tagname = mymodule.nvr
if clog:
mymodule.clog()
filename = 'clog'