summaryrefslogtreecommitdiff
path: root/qutebrowser/config/configtypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/config/configtypes.py')
-rw-r--r--qutebrowser/config/configtypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/config/configtypes.py b/qutebrowser/config/configtypes.py
index 70337b848..12a21aaeb 100644
--- a/qutebrowser/config/configtypes.py
+++ b/qutebrowser/config/configtypes.py
@@ -1106,7 +1106,7 @@ class QtColor(BaseType):
mult = 359.0 if kind == 'h' else 255.0
if val.endswith('%'):
val = val[:-1]
- mult = mult / 100
+ mult /= 100
try:
return int(float(val) * mult)