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
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -311,14 +311,15 @@ def convertUnsupportedFormats(self, progress):
command = command.split(" ") command = command.split(" ")
else: else:
command = [command] command = [command]
subprocess.Popen( proc = subprocess.Popen(
command, command,
shell=True, shell=True,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stdin=subprocess.PIPE, stdin=subprocess.PIPE,
stderr=subprocess.STDOUT, stderr=subprocess.STDOUT,
universal_newlines=False, universal_newlines=False,
) )
proc.communicate()




elif isinstance(out, OutputTable): elif isinstance(out, OutputTable):
Expand Down

0 comments on commit 92cf321

Please sign in to comment.