Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Mar 2, 2017
1 parent fb43d19 commit 3a6a34e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SideBar.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ def run(self):
class SideBarOpenCommand(sublime_plugin.WindowCommand):
def run(self, paths = []):
for item in SideBarSelection(paths).getSelectedItems():
item.open(s.get('use_powershell', True))
item.open()
2 changes: 1 addition & 1 deletion SideBarAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def name(self):
branch, leaf = os.path.split(self.path())
return leaf;

def open(self, use_powershell = True):
def open(self):
if sublime.platform() == 'osx':
import subprocess
subprocess.Popen(['open', self.name()], cwd=self.dirname())
Expand Down

0 comments on commit 3a6a34e

Please sign in to comment.