From 3810d8d56a046206628c9d906d561e2931367bf2 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 20 Sep 2010 14:05:26 -0700 Subject: Handle paths with push/pull --- src/fedpkg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fedpkg.py') diff --git a/src/fedpkg.py b/src/fedpkg.py index ecfbbf8..04b8073 100755 --- a/src/fedpkg.py +++ b/src/fedpkg.py @@ -620,14 +620,14 @@ def prep(args): def pull(args): try: - pyfedpkg.pull() + pyfedpkg.pull(path=args.path) except pyfedpkg.FedpkgError, e: log.error('Could not push: %s' % e) sys.exit(1) def push(args): try: - pyfedpkg.push() + pyfedpkg.push(path=args.path) except pyfedpkg.FedpkgError, e: log.error('Could not push: %s' % e) sys.exit(1) -- cgit