summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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