We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cbe7e7c + c083835 commit 244b149Copy full SHA for 244b149
doxybuild.py
@@ -31,7 +31,7 @@ def find_program(*filenames):
31
paths = os.environ.get('PATH', '').split(os.pathsep)
32
suffixes = ('win32' in sys.platform) and '.exe .com .bat .cmd' or ''
33
for filename in filenames:
34
- for name in [filename+ext for ext in suffixes.split()]:
+ for name in [filename+ext for ext in suffixes.split(' ')]:
35
for directory in paths:
36
full_path = os.path.join(directory, name)
37
if os.path.isfile(full_path):
0 commit comments