fix a typo in QueryProcessor
This commit is contained in:
parent
c7a475d055
commit
68554d032f
1 changed files with 2 additions and 2 deletions
|
|
@ -3723,7 +3723,7 @@ class QueryProcessor(object):
|
||||||
if values:
|
if values:
|
||||||
self.values = values
|
self.values = values
|
||||||
else:
|
else:
|
||||||
self.value = {}
|
self.values = {}
|
||||||
if opts:
|
if opts:
|
||||||
self.opts = opts
|
self.opts = opts
|
||||||
else:
|
else:
|
||||||
|
|
@ -5005,7 +5005,7 @@ class RootExports(object):
|
||||||
the given date, in either float (seconds since the epoch)
|
the given date, in either float (seconds since the epoch)
|
||||||
or str (ISO) format
|
or str (ISO) format
|
||||||
"""
|
"""
|
||||||
if opts is None:
|
if not opts:
|
||||||
opts = {}
|
opts = {}
|
||||||
|
|
||||||
tables = ['task']
|
tables = ['task']
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue