summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-09-20 14:08:14 -0700
committerJesse Keating <jkeating@redhat.com>2010-09-20 14:08:14 -0700
commite60a98b0969a729178202bc63668758aea0773d1 (patch)
tree4f85f908f40ec000ec01a3d13a739b419f7ac4d3
parentc726c445a0e2adcc0dccaba4ac49a7b617627ca5 (diff)
downloadfedora-packager-e60a98b0969a729178202bc63668758aea0773d1.tar.gz
fedora-packager-e60a98b0969a729178202bc63668758aea0773d1.tar.xz
fedora-packager-e60a98b0969a729178202bc63668758aea0773d1.zip
Include path to clog
-rwxr-xr-xsrc/fedpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 04b8073..a6bab26 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -448,7 +448,7 @@ def commit(args):
except pyfedpkg.FedpkgError, e:
log.error('coult not create clog: %s' % e)
sys.exit(1)
- args.file = os.path.abspath('clog')
+ args.file = os.path.abspath(self.path.join(args.path, 'clog'))
try:
pyfedpkg.commit(args.path, args.message, args.file, args.files)
except pyfedpkg.FedpkgError, e: