diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-24 22:49:04 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-24 22:49:04 +0000 |
commit | a5bce1422635991559b4c49b869b100266238104 (patch) | |
tree | 3f9c72c4234de0d8e66a875883f1c0ee140385eb /core/utils.py | |
parent | 9c3a40dd98cb5d913bc2e2eb3c7cbf2f9be3e05f (diff) | |
download | troggle-a5bce1422635991559b4c49b869b100266238104.tar.gz troggle-a5bce1422635991559b4c49b869b100266238104.tar.bz2 troggle-a5bce1422635991559b4c49b869b100266238104.zip |
typos
Diffstat (limited to 'core/utils.py')
-rw-r--r-- | core/utils.py | 2 |
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(":","^") |