summaryrefslogtreecommitdiffstats
path: root/core/utils.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2025-01-24 22:49:04 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2025-01-24 22:49:04 +0000
commita5bce1422635991559b4c49b869b100266238104 (patch)
tree3f9c72c4234de0d8e66a875883f1c0ee140385eb /core/utils.py
parent9c3a40dd98cb5d913bc2e2eb3c7cbf2f9be3e05f (diff)
downloadtroggle-a5bce1422635991559b4c49b869b100266238104.tar.gz
troggle-a5bce1422635991559b4c49b869b100266238104.tar.bz2
troggle-a5bce1422635991559b4c49b869b100266238104.zip
typos
Diffstat (limited to 'core/utils.py')
-rw-r--r--core/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/utils.py b/core/utils.py
index fa8f57b..b6ec7af 100644
--- a/core/utils.py
+++ b/core/utils.py
@@ -76,7 +76,7 @@ except:
def sanitize_name(name):
- """Filenames sould not caontain these characters as then the system barf when it tries to use them in URLs
+ """Filenames sould not contain these characters as then the system barf when it tries to use them in URLs
"""
return name.replace("#","-").replace("?","=").replace("&","+").replace(":","^")