added unicode-literals forward-compatibility module
This commit is contained in:
parent
0574044472
commit
5b7f8c9646
3
bot.py
3
bot.py
|
@ -1,3 +1,6 @@
|
|||
# use unicode encoding for all literals by default (for python2.x)
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__author__ = "Steffen Vogel"
|
||||
__copyright__ = "Copyright 2015, Steffen Vogel"
|
||||
__license__ = "GPLv3"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# use unicode encoding for all literals by default (for python2.x)
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__author__ = "Steffen Vogel"
|
||||
__copyright__ = "Copyright 2015, Steffen Vogel"
|
||||
__license__ = "GPLv3"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# use unicode encoding for all literals by default (for python2.x)
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import Queue
|
||||
import threading
|
||||
|
||||
|
|
Loading…
Reference in a new issue