\d <nonexistent table>

pull/132/head
catherinedevlin 2018-05-21 01:35:21 -04:00
parent b60a463c63
commit 6710de4f3a
1 changed files with 3 additions and 0 deletions

View File

@ -297,6 +297,9 @@ class FakeResultProxy(object):
"""
def __init__(self, cursor, headers):
if cursor is None:
cursor = []
headers = []
if isinstance(cursor, list):
self.from_list(source_list=cursor)
else: