Skip to content
This repository was archived by the owner on Jan 27, 2023. It is now read-only.

Commit 5e1158e

Browse files
Code cleanup
1 parent ffc751f commit 5e1158e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

searchengines/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def run(self, query, folders):
4646
stderr=subprocess.PIPE,
4747
cwd=folders[0]
4848
)
49-
except OSError as e: # Not FileNotFoundError for compatibility with Sublime Text 2
49+
except OSError: # Not FileNotFoundError for compatibility with Sublime Text 2
5050
raise RuntimeError("Could not find executable %s" % self.path_to_executable)
5151

5252
output, error = pipe.communicate()

0 commit comments

Comments
 (0)