Skip to content

Commit

Permalink
f-string py3.10 bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrolexa committed Feb 11, 2025
1 parent 38926e8 commit 6b4762e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypsbuilder/psbuilders.py
Original file line number Diff line number Diff line change
Expand Up @@ -1951,7 +1951,7 @@ def builder_ui_settings(self):

def app_settings(self, write=False):
# Applicatiom settings
builder_settings = QtCore.QSettings("LX", f"ptbuilder {QTPY_API}{QT_VERSION.split(".")[0]}")
builder_settings = QtCore.QSettings("LX", f"ptbuilder {QTPY_API}{QT_VERSION.split('.')[0]}")
if write:
builder_settings.setValue("steps", self.spinSteps.value())
builder_settings.setValue("precision", self.spinPrec.value())
Expand Down

0 comments on commit 6b4762e

Please sign in to comment.