Commit 63c5c987 authored by Tim Graham's avatar Tim Graham
Browse files

Refs #24324 -- Fixed UnicodeEncodeError in SQLite backend while testing.

If 'name' contained non-ASCII characters, the comparison raised a
UnicodeEncodeError on Python 2.
parent 81a94cc6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -299,7 +299,7 @@ class DatabaseWrapper(BaseDatabaseWrapper):
        self.cursor().execute("BEGIN")

    def is_in_memory_db(self, name):
        return name == ":memory:" or "mode=memory" in name
        return name == ":memory:" or "mode=memory" in force_text(name)


FORMAT_QMARK_REGEX = re.compile(r'(?<!%)%s')