summaryrefslogtreecommitdiff
path: root/BaseTools/Source/Python/Eot/Database.py
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/Python/Eot/Database.py')
-rw-r--r--BaseTools/Source/Python/Eot/Database.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Eot/Database.py b/BaseTools/Source/Python/Eot/Database.py
index fca08b96bb..64a72287e0 100644
--- a/BaseTools/Source/Python/Eot/Database.py
+++ b/BaseTools/Source/Python/Eot/Database.py
@@ -78,7 +78,6 @@ class Database(object):
self.Conn.execute("PRAGMA page_size=8192")
self.Conn.execute("PRAGMA synchronous=OFF")
# to avoid non-ascii character conversion error
- self.Conn.text_factory = str
self.Cur = self.Conn.cursor()
self.TblDataModel = TableDataModel(self.Cur)