Skip to content

Commit 6cb3189

Browse files
authored
Merge pull request #49 from SublimeLinter/fix-double-escaping
Do not double escape paths
2 parents c3b0a47 + baa2355 commit 6cb3189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def cmd(self):
4646
paths = settings['paths']
4747
if paths:
4848
commands = ['import sys'] + [
49-
'sys.path.append({!r})'.format(path)
49+
"sys.path.append('{}')".format(path)
5050
for path in paths
5151
]
5252
settings['init-hook'] = commands

0 commit comments

Comments
 (0)