Skip to content

Commit

Permalink
Merge pull request #27 from PyBossa/fix-reserved-words
Browse files Browse the repository at this point in the history
Fix reserved words
  • Loading branch information
teleyinex committed Nov 24, 2015
2 parents 7ac5b03 + f39e86a commit 5ef7af0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pbclient/__init__.py
Expand Up @@ -139,7 +139,7 @@ class Result(DomainObject):
"""Class Result."""

reserved_keys = dict(id=None, created=None, project_id=None,
task_id=None, task_run_ids=None)
task_id=None, task_run_ids=None, last_version=None)


def __repr__(self): # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name='pybossa-client',
version='1.1.0',
version='1.1.1',
packages=find_packages(),
install_requires=['requests>=0.13.0'],
# metadata for upload to PyPI
Expand Down

0 comments on commit 5ef7af0

Please sign in to comment.