Skip to content

Commit

Permalink
update call method for open folder #96
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaker committed Feb 21, 2023
1 parent 910005e commit 45ed07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mergeSelectionUi.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def openFolder(self):
path,_ = os.path.split(self.finalFilename)
if platform.system() == "Windows":
try:
os.system('explorer.exe /select,"{}"'.format(self.finalFilename))
sp.call('explorer.exe /select,"{}"'.format(self.finalFilename))
except Exception as e:
print(e)
os.startfile(path)
Expand Down

0 comments on commit 45ed07b

Please sign in to comment.