summaryrefslogtreecommitdiffstats
path: root/src/fedpkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/fedpkg.py')
-rwxr-xr-xsrc/fedpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 51aa88d..1ad450f 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -449,7 +449,7 @@ def commit(args):
except pyfedpkg.FedpkgError, e:
log.error('coult not create clog: %s' % e)
sys.exit(1)
- args.file = os.path.abspath(self.path.join(args.path, 'clog'))
+ args.file = os.path.abspath(os.path.join(args.path, 'clog'))
try:
pyfedpkg.commit(args.path, args.message, args.file, args.files)
except pyfedpkg.FedpkgError, e: