Skip to content

Commit

Permalink
bug: Make bso_num in migrate_node less truthy (#637)
Browse files Browse the repository at this point in the history
Closes #636
  • Loading branch information
jrconlin committed May 14, 2020
1 parent 0727666 commit fa96964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/user_migration/migrate_node.py
Expand Up @@ -776,7 +776,7 @@ def main():
args.user = user_list
elif args.wipe_user:
raise RuntimeError("--wipe_user requires --user")
if args.bso_num:
if args.bso_num is not None:
args.start_bso = args.end_bso = args.bso_num
for line in dsns:
dsn = urlparse(line.strip())
Expand Down

0 comments on commit fa96964

Please sign in to comment.