From bfbb12faf3124c8f4a4729dd55ac13c2dcb98f8f Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 20 Sep 2010 14:19:52 -0700 Subject: Fix up the diff changes from jochen --- src/fedpkg.py | 2 +- src/pyfedpkg/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 -- cgit