Skip to content

Commit

Permalink
area list and parse meta bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pnoll1 committed Jul 25, 2022
1 parent e7a78c7 commit 4cee80c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osmand_osm/osm/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,9 @@ def main(args=None):
for i in batches:
j = i.split(' ')
args = parser.parse_args(j)
parse_meta_commands()
parse_meta_commands(args)
logging.debug(args)
area_list = vars(args)['area-list']
area_list = vars(args)['area_list']
update_run_all_build(args, area_list)
logging.info('obfs build stage finished for ' + i)
clean_file_names()
Expand Down

0 comments on commit 4cee80c

Please sign in to comment.