summaryrefslogtreecommitdiff
path: root/rpc.py
diff options
context:
space:
mode:
authorrichard <devnull@localhost>2005-08-03 22:27:59 +0000
committerrichard <devnull@localhost>2005-08-03 22:27:59 +0000
commit80c6a6f8c88868d0a349914e53f28d2843e842e4 (patch)
treecaf2d7547cf5a8ed1098b991811fdf6707f011b8 /rpc.py
parent7f5f5cfb5758c33330d90b2e1504d11e602f1f5e (diff)
downloaddecorator-80c6a6f8c88868d0a349914e53f28d2843e842e4.tar.gz
sync
Diffstat (limited to 'rpc.py')
-rw-r--r--rpc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc.py b/rpc.py
index 3542c00..2e5206c 100644
--- a/rpc.py
+++ b/rpc.py
@@ -31,12 +31,12 @@ def echo(store,*args):
return args
def index(store,*args):
- spec = { '_pypi_hidden' : 'FALSE' }
+ spec = { '_pypi_hidden': 'FALSE' }
return [row.as_dict() for row in store.query_packages(spec)]
def search(store,*args):
term = args[0]
- spec = { 'name' : term, '_pypi_hidden' : 'FALSE' }
+ spec = { 'name': term, '_pypi_hidden': 'FALSE' }
return [row.as_dict() for row in store.query_packages(spec)]
def info(store, *args):