fix function name for windows

This commit is contained in:
Miguel Jacq 2018-09-19 11:27:36 +10:00
parent 86d42731af
commit 3544049961

View File

@ -96,7 +96,7 @@ class File(QtWidgets.QWidget):
# Windows
elif self.common.platform == 'Windows':
webbrowser.Popen(['explorer', '/select', abs_filename])
subprocess.Popen(['explorer', '/select', abs_filename])
class Upload(QtWidgets.QWidget):