1
0
mirror of https://github.com/django/django.git synced 2025-10-29 16:46:11 +00:00

Fixed #5134 -- Return empty strings as Unicode in psycopg1 backend.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick
2007-08-11 05:23:19 +00:00
parent 049212e950
commit 31ba14761e
2 changed files with 7 additions and 1 deletions

View File

@@ -278,7 +278,7 @@ def typecast_string(s):
"""
Cast all returned strings to unicode strings.
"""
if not s:
if not s and not isinstance(s, str):
return s
return smart_unicode(s)