summaryrefslogtreecommitdiff
path: root/src/mailman/languages
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-25 19:03:05 -0400
committerBarry Warsaw2016-03-25 19:03:05 -0400
commitc81e250e3a5690e8c8f9f4dc4b460c2a81731c48 (patch)
tree8152b01042ce3cd9a2f118759cbab7193f41b64e /src/mailman/languages
parent01433eedaeea07b72bfc8b2a970a1e0023975cd6 (diff)
downloadmailman-c81e250e3a5690e8c8f9f4dc4b460c2a81731c48.tar.gz
mailman-c81e250e3a5690e8c8f9f4dc4b460c2a81731c48.tar.zst
mailman-c81e250e3a5690e8c8f9f4dc4b460c2a81731c48.zip
Clean up the utilities directory.
Diffstat (limited to 'src/mailman/languages')
-rw-r--r--src/mailman/languages/language.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/languages/language.py b/src/mailman/languages/language.py
index 2b58180ed..014852c5c 100644
--- a/src/mailman/languages/language.py
+++ b/src/mailman/languages/language.py
@@ -31,7 +31,7 @@ class Language:
def __init__(self, code, charset, description):
self.code = code
self.charset = charset
- self.description = description
+ self.description = description
def __str__(self):
return '<Language [{0.code}] {0.description}>'.format(self)