diff options
author | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-06-05 14:59:38 -0700 |
---|---|---|
committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-06-06 07:55:39 -0700 |
commit | b114ff6361550246cb5cb96168d25fe46bd355ef (patch) | |
tree | b998ea09ac3317c0c2c2eec4b009eb601c920477 /sqlparse/compat.py | |
parent | c43fccfefed0806cca52bea48d232ddf72f842cd (diff) | |
download | sqlparse-b114ff6361550246cb5cb96168d25fe46bd355ef.tar.gz |
Update init and misc files
Diffstat (limited to 'sqlparse/compat.py')
-rw-r--r-- | sqlparse/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/compat.py b/sqlparse/compat.py index 0defd86..a41b18b 100644 --- a/sqlparse/compat.py +++ b/sqlparse/compat.py @@ -50,5 +50,5 @@ elif PY2: text_type = unicode - string_types = (basestring,) + string_types = (str, unicode,) from StringIO import StringIO |