Skip to content

Commit 5ef0f03

Browse files
committed
Fix Popen call to be compatible with Windows
1 parent ada383b commit 5ef0f03

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

gtm-plugin.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ class GTM(sublime_plugin.EventListener):
7676
shell=True,
7777
stdin=subprocess.PIPE,
7878
stdout=subprocess.PIPE,
79-
stderr=subprocess.STDOUT,
80-
close_fds=True)
79+
stderr=subprocess.STDOUT)
8180
output = p.stdout.read()
8281
status_option_found = '-status' in output.decode('utf-8')
8382
if not status_option_found:

0 commit comments

Comments
 (0)