Skip to content

Commit

Permalink
Merge pull request #49 from SublimeLinter/fix-double-escaping
Browse files Browse the repository at this point in the history
Do not double escape paths
  • Loading branch information
kaste authored May 11, 2018
2 parents c3b0a47 + baa2355 commit 6cb3189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def cmd(self):
paths = settings['paths']
if paths:
commands = ['import sys'] + [
'sys.path.append({!r})'.format(path)
"sys.path.append('{}')".format(path)
for path in paths
]
settings['init-hook'] = commands
Expand Down

0 comments on commit 6cb3189

Please sign in to comment.