Skip to content

Commit f058035

Browse files
Merge pull request #195 from hobocta/master
Fix a bug "WinError 6"
2 parents f8ebf12 + f29d0a0 commit f058035

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ctags.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,8 @@ def build_ctags(path, tag_file=None, recursive=False, cmd=None, env=None):
298298

299299
# execute the command
300300
p = subprocess.Popen(cmd, cwd=cwd, shell=False, env=env,
301-
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
301+
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
302+
stderr=subprocess.STDOUT)
302303

303304
ret = p.wait()
304305

0 commit comments

Comments
 (0)