summaryrefslogtreecommitdiff
path: root/django/utils/baseconv.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-02 13:12:09 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-02 13:12:09 -0700
commit7548aa8ffd46eb6e0f73730d1b2eb515ba581f95 (patch)
tree963393779f4c8c33351ea605f708f8da7d9f70bf /django/utils/baseconv.py
parent65c4ac3b2434d1828cb76c9f4454fe64e81354ee (diff)
More attacking E302 violators
Diffstat (limited to 'django/utils/baseconv.py')
-rw-r--r--django/utils/baseconv.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/utils/baseconv.py b/django/utils/baseconv.py
index 053ce3e97e..f550c245d0 100644
--- a/django/utils/baseconv.py
+++ b/django/utils/baseconv.py
@@ -44,6 +44,7 @@ BASE36_ALPHABET = '0123456789abcdefghijklmnopqrstuvwxyz'
BASE62_ALPHABET = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
BASE64_ALPHABET = BASE62_ALPHABET + '-_'
+
class BaseConverter(object):
decimal_digits = '0123456789'