Skip to content

Commit

Permalink
Fix python2/3 compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoTavares committed May 13, 2024
1 parent d0cf9ab commit a3ee8a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuesubmit/cuesubmit/ui/Widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def __init__(self, label=None, parent=None,
max_value=999,
float_precision=None):
super(CueLabelSlider, self).__init__(parent=parent)
self._labelValue = f'{label} ({{value}})'
self._labelValue = "%s ({value})" % label
self.float_mult = 1
if float_precision:
self.float_mult = 10**float_precision
Expand Down

0 comments on commit a3ee8a2

Please sign in to comment.