summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJochen Schmitt <Jochen@herr-schmitt.de>2010-09-26 20:28:17 +0200
committerJesse Keating <jkeating@redhat.com>2010-11-30 15:43:31 -0800
commit47780511a21a6d7ea60e2781b0355155f72a8c6e (patch)
tree02549064e3ee83044bb83c4613c3eea8af86879e
parentcd3e56bc505a35a71d324a656eb133586a30c59b (diff)
downloadfedora-packager-47780511a21a6d7ea60e2781b0355155f72a8c6e.tar.gz
fedora-packager-47780511a21a6d7ea60e2781b0355155f72a8c6e.tar.xz
fedora-packager-47780511a21a6d7ea60e2781b0355155f72a8c6e.zip
Fix error to call the diff functionen in import_srpm
-rwxr-xr-xsrc/fedpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 5f3219e..51aa88d 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -523,7 +523,7 @@ def import_srpm(args):
sys.exit(1)
# replace this system call with a proper diff target when it is
# readys
- mymodule.diff(cached=True)
+ pyfedpkg.diff(args.path, cached=True)
print('--------------------------------------------')
print("New content staged and new sources uploaded.")
print("Commit if happy or revert with: git reset --hard HEAD")