Skip to content

Commit

Permalink
Swap equality checks for in
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarkentin committed Jul 31, 2016
1 parent 70a295f commit 976ca1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion watchman/management/commands/watchman.py
Expand Up @@ -30,7 +30,7 @@ def handle(self, *args, **options):
check_list = None
skip_list = None
verbosity = options['verbosity']
print_all_checks = verbosity == '2' or verbosity == '3'
print_all_checks = verbosity in ['2', '3', ]

checks = options['checks']
skips = options['skips']
Expand Down

0 comments on commit 976ca1d

Please sign in to comment.