Skip to content

Commit

Permalink
W:105, 0: Unnecessary semicolon (unnecessary-semicolon)
Browse files Browse the repository at this point in the history
  • Loading branch information
xsuchy committed Mar 16, 2017
1 parent 07859a8 commit 95e96ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/mockbuild/scm.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_sources(self):
util.do(shlex.split(command), shell=False, cwd=self.src_dir, env=os.environ)
except PermissionError as e:
self.log.error("{} does not exist or cannot be executed due permissions."
.format(shlex.split(command)[0]));
.format(shlex.split(command)[0]))
sys.exit(5)

self.log.debug("Fetched sources from SCM")
Expand Down

0 comments on commit 95e96ee

Please sign in to comment.