summaryrefslogtreecommitdiffstats
path: root/src/fedpkg.py
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-09-20 14:05:26 -0700
committerJesse Keating <jkeating@redhat.com>2010-09-20 14:05:26 -0700
commit3810d8d56a046206628c9d906d561e2931367bf2 (patch)
treee15601ef8d1c1f92ba28a0f3f769e1f1a9af0384 /src/fedpkg.py
parent53146ca4838576cb7383f2218d8ad3c51d9c564d (diff)
downloadfedora-packager-3810d8d56a046206628c9d906d561e2931367bf2.tar.gz
fedora-packager-3810d8d56a046206628c9d906d561e2931367bf2.tar.xz
fedora-packager-3810d8d56a046206628c9d906d561e2931367bf2.zip
Handle paths with push/pull
Diffstat (limited to 'src/fedpkg.py')
-rwxr-xr-xsrc/fedpkg.py4
1 files changed, 2 insertions, 2 deletions
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)