Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Fix bug in account error checking
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Jan 28, 2016
1 parent c529d38 commit 798d15c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def report(cmd):
cwd = getcwd()
try:
chdir(path.realpath(path.join(path.dirname(__file__), '..')))
cmd += ['-f', 'declarations.dat']
cmd = [cmd[0]] + ['-f', 'declarations.dat', '--pedantic'] + cmd[1:]
retcode = subprocess.call(' '.join(cmd), shell=True)
if retcode != 0:
raise SystemExit(retcode)
Expand Down

0 comments on commit 798d15c

Please sign in to comment.