Skip to content

Commit

Permalink
small fix for recover
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiesele committed Jun 11, 2020
1 parent d08d885 commit 3d7a58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/convertFromSource.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
args=parser.parse_args()
infile=args.i
outPath=args.o
if len(infile)<1 or len(outPath)<1:
if (len(infile)<1 or len(outPath)<1) and not len(args.r):
parser.print_help()
exit()
class_name=args.c
Expand Down

0 comments on commit 3d7a58d

Please sign in to comment.