Skip to content

Commit

Permalink
r.futures.parallelpga: fix for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
petrasovaa committed Nov 21, 2019
1 parent a8eeccd commit 3146712
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -310,7 +310,7 @@ def main():
subregions = options['subregions']
tosplit = flags['d']
# filter unused optional params
for key in options.keys():
for key in list(options.keys()):
if options[key] == '':
options.pop(key)
if tosplit and options['output_series']:
Expand Down

0 comments on commit 3146712

Please sign in to comment.