From 68554d032fa166d7a6104de89e8246f04a45d357 Mon Sep 17 00:00:00 2001 From: Mike Bonnet Date: Wed, 22 Oct 2008 16:56:49 -0400 Subject: [PATCH] fix a typo in QueryProcessor --- hub/kojihub.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/kojihub.py b/hub/kojihub.py index 1775fc4c..aa4867a7 100644 --- a/hub/kojihub.py +++ b/hub/kojihub.py @@ -3723,7 +3723,7 @@ class QueryProcessor(object): if values: self.values = values else: - self.value = {} + self.values = {} if opts: self.opts = opts else: @@ -5005,7 +5005,7 @@ class RootExports(object): the given date, in either float (seconds since the epoch) or str (ISO) format """ - if opts is None: + if not opts: opts = {} tables = ['task']