Skip to content

Commit

Permalink
Fix forgotten PyQt6 update in converter
Browse files Browse the repository at this point in the history
  • Loading branch information
reilleya committed Aug 19, 2024
1 parent 0ff1670 commit d8e7faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uilib/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def showFileSelector(self):
title = 'Export {}'.format(self.name)
types = self.getFileTypeString()
if not self.confirmOverwrite:
path = QFileDialog.getSaveFileName(None, title, '', types, options=QFileDialog.DontConfirmOverwrite)[0]
path = QFileDialog.getSaveFileName(None, title, '', types, options=QFileDialog.Option.DontConfirmOverwrite)[0]
else:
path = QFileDialog.getSaveFileName(None, title, '', types)[0]
if path == '' or path is None:
Expand Down

0 comments on commit d8e7faa

Please sign in to comment.