aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'libpathod/utils.py')
-rw-r--r--libpathod/utils.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/libpathod/utils.py b/libpathod/utils.py
index dd0ae425..1475500a 100644
--- a/libpathod/utils.py
+++ b/libpathod/utils.py
@@ -10,11 +10,11 @@ SSLVERSIONS = {
}
SIZE_UNITS = dict(
- b = 1024**0,
- k = 1024**1,
- m = 1024**2,
- g = 1024**3,
- t = 1024**4,
+ b = 1024 ** 0,
+ k = 1024 ** 1,
+ m = 1024 ** 2,
+ g = 1024 ** 3,
+ t = 1024 ** 4,
)