Skip to content

Commit

Permalink
fixed datasets fxn, and egs work, bumped to get ready for pypi push
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Nov 3, 2015
1 parent 8f1116a commit e5c2ec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pygbif/registry/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ def getdata(x, uuid, args, **kwargs):
url = gbif_baseurl + 'dataset/' + uuid + '/' + x

res = gbif_GET(url, args, **kwargs)
# return {'meta': get_meta(res), 'data': parse_results(res, uuid)}
return res
return {'meta': get_meta(res), 'data': parse_results(res, uuid)}

# Get data
if len2(data) ==1:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='pygbif',
version='0.0.5.9500',
version='0.0.9.9000',
description='Python client for GBIF',
author='Scott Chamberlain',
author_email='myrmecocystus@gmail.com',
Expand Down

0 comments on commit e5c2ec7

Please sign in to comment.