diff options
author | Jesse Keating <jkeating@redhat.com> | 2010-09-20 13:31:47 -0700 |
---|---|---|
committer | Jesse Keating <jkeating@redhat.com> | 2010-09-20 13:31:47 -0700 |
commit | d95a4d0146cd236d3fe51291ee1c68a7b027994c (patch) | |
tree | 991c16aade2115bba11bea875b57e491f4027b5a /src/fedpkg.py | |
parent | 72531d43ecceaee02ac1f46a056ea6403ecc3ee4 (diff) | |
download | fedora-packager-d95a4d0146cd236d3fe51291ee1c68a7b027994c.tar.gz fedora-packager-d95a4d0146cd236d3fe51291ee1c68a7b027994c.tar.xz fedora-packager-d95a4d0146cd236d3fe51291ee1c68a7b027994c.zip |
Don't use the unnecessary getnvr()
Diffstat (limited to 'src/fedpkg.py')
-rwxr-xr-x | src/fedpkg.py | 2 |
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' |