summaryrefslogtreecommitdiff
path: root/slugify
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2019-10-10 18:23:49 -0400
committerVal Neekman <val@neekware.com>2019-10-10 18:23:49 -0400
commitb9db1bc87e3b19c5c63ab7a00b19685b7996de5d (patch)
treee639e0fa57bcec1ebe36e81f3ceb40cb4a9f1563 /slugify
parent33bf07efc82c00b811df02bca8c5862f95db3294 (diff)
downloadpython-slugify-3.0.6.tar.gz
fix missing encoding in file3.0.6
Diffstat (limited to 'slugify')
-rw-r--r--slugify/__init__.py2
-rw-r--r--slugify/special.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/slugify/__init__.py b/slugify/__init__.py
index 0c86a4c..b1dfecb 100644
--- a/slugify/__init__.py
+++ b/slugify/__init__.py
@@ -4,4 +4,4 @@ from .slugify import *
__author__ = 'Val Neekman @ Neekware Inc. [@vneekman]'
__description__ = 'A Python slugify application that also handles Unicode'
-__version__ = '3.0.5'
+__version__ = '3.0.6'
diff --git a/slugify/special.py b/slugify/special.py
index 767541a..d3478d5 100644
--- a/slugify/special.py
+++ b/slugify/special.py
@@ -1,3 +1,6 @@
+# -*- coding: utf-8 -*-
+
+
def add_uppercase_char(char_list):
""" Given a replacement char list, this adds uppercase chars to the list """