Skip to content

Commit

Permalink
woops, fixed silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kodonnell committed Sep 9, 2017
1 parent 3e3b7dd commit 4c3e57d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pbivcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def _find_confs(path):
# now parse again to get final args:
args = parser.parse_args()

if args['extract']:
extract_pbit(args['input'], args['output'])
if args.extract:
extract_pbit(args.input, args.output)
else:
compress_pbit(args['input'], args['output'])
compress_pbit(args.input, args.output)

0 comments on commit 4c3e57d

Please sign in to comment.