Skip to content

Commit

Permalink
Don't check unmodified files for whitespace and pyflakes issues.
Browse files Browse the repository at this point in the history
--HG--
extra : rebase_source : 78956e1698d4f98974a15b0c7fde768fe47e6e1a
extra : histedit_source : 8279b738980fc958d735d255a351f30f223961ad
  • Loading branch information
Nikratio committed Aug 16, 2014
1 parent c0bae57 commit 21fb8ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkpatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def parse_args():
if not check_imports():
found_problems = True

hg_out = subprocess.check_output(['hg', 'status', '--clean', '--modified', '--added',
hg_out = subprocess.check_output(['hg', 'status', '--modified', '--added',
'--no-status', '--print0'])
for b_name in hg_out.split(b'\0'):
if not b_name:
Expand Down

0 comments on commit 21fb8ad

Please sign in to comment.