Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

Commit b0ca068

Browse files
committed
Merge pull request #144 from rgom/spaces_in_names_fix
Allow spaces in tool path.
2 parents 0732a01 + d23f9a4 commit b0ca068

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pycallgraph/output/graphviz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def done(self):
100100
with os.fdopen(fd, 'w') as f:
101101
f.write(source)
102102

103-
cmd = '{0} -T{1} -o{2} {3}'.format(
103+
cmd = '"{0}" -T{1} -o{2} {3}'.format(
104104
self.tool, self.output_type, self.output_file, temp_name
105105
)
106106

0 commit comments

Comments
 (0)