Skip to content

Commit

Permalink
Get rid of underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanC committed Oct 22, 2018
1 parent 0d54467 commit 7818408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def __init__(self):
tabWidget.layout().addStretch()

def selectExecutable(self, widget, param):
fileName, _ = QFileDialog.getOpenFileName(self,"Select executable file", QDir.rootPath(),"All Files (*)")
fileName = QFileDialog.getOpenFileName(self,"Select executable file", QDir.rootPath(),"All Files (*)")
if fileName:
self.s.set(param["setting"], fileName)
widget.setText(fileName)
Expand Down

0 comments on commit 7818408

Please sign in to comment.