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