mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
9 lines
139 B
Python
9 lines
139 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
try:
|
|
STRING_TYPE = basestring
|
|
except NameError:
|
|
# Python 3
|
|
STRING_TYPE = str
|
|
|
|
# vim: ai sts=4 et sw=4
|