summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-09-20 14:19:52 -0700
committerJesse Keating <jkeating@redhat.com>2010-09-20 14:19:52 -0700
commitbfbb12faf3124c8f4a4729dd55ac13c2dcb98f8f (patch)
tree9ddcdac0eb6f0f27330edd2d3586ae2d0057b7b7
parent789d7dcf0527db2339110e6047c525a9486fba2c (diff)
downloadfedora-packager-bfbb12faf3124c8f4a4729dd55ac13c2dcb98f8f.tar.gz
fedora-packager-bfbb12faf3124c8f4a4729dd55ac13c2dcb98f8f.tar.xz
fedora-packager-bfbb12faf3124c8f4a4729dd55ac13c2dcb98f8f.zip
Fix up the diff changes from jochen
-rwxr-xr-xsrc/fedpkg.py2
-rw-r--r--src/pyfedpkg/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 6b6477d..48fb1d4 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -482,7 +482,7 @@ def compile(args):
def diff(args):
try:
- return mymodule.diff(args.path, args.cached, args.files)
+ return pyfedpkg.diff(args.path, args.cached, args.files)
except pyfedpkg.FedpkgError, e:
log.error('Could not diff: %s' % e)
sys.exit(1)
diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py
index bb7449f..df788cb 100644
--- a/src/pyfedpkg/__init__.py
+++ b/src/pyfedpkg/__init__.py
@@ -520,7 +520,7 @@ def diff(path, cached=False, files=[]):
optionally diff the cached or staged changes
- Takes an optional list of files to diff reletive to the module base
+ Takes an optional list of files to diff relative to the module base
directory
Logs the output and returns nothing