Skip to content

Commit

Permalink
[processing] wait until file conversion is finished
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jun 22, 2015
1 parent 551cf82 commit 92cf321
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/core/GeoAlgorithm.py
Expand Up @@ -311,14 +311,15 @@ def convertUnsupportedFormats(self, progress):
command = command.split(" ")
else:
command = [command]
subprocess.Popen(
proc = subprocess.Popen(
command,
shell=True,
stdout=subprocess.PIPE,
stdin=subprocess.PIPE,
stderr=subprocess.STDOUT,
universal_newlines=False,
)
proc.communicate()


elif isinstance(out, OutputTable):
Expand Down

0 comments on commit 92cf321

Please sign in to comment.