diff --git a/gooey/gui/seeder.py b/gooey/gui/seeder.py index 81d10a2..cf8e79a 100644 --- a/gooey/gui/seeder.py +++ b/gooey/gui/seeder.py @@ -12,7 +12,7 @@ def fetchDynamicProperties(target, encoding): dynamically generated defaults with which to seed the UI """ cmd = '{} {}'.format(target, 'gooey-seed-ui --ignore-gooey') - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) if proc.returncode != 0: out, _ = proc.communicate() return json.loads(out.decode(encoding))