Skip to content

Commit

Permalink
Fix error in Workitem.dump() and bump to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lbt committed May 3, 2011
1 parent fdd6639 commit 4420596
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RuoteAMQP/workitem.py
Expand Up @@ -282,4 +282,4 @@ def params(self):

def dump(self):
"A useful and consistent dump format"
return json.dumps(wid.to_h(), sort_keys=True, indent=4)
return json.dumps(self._h, sort_keys=True, indent=4)
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
python-ruote-amqp (2.0.1-1) unstable; urgency=low

* Fix error in Workitem.dump()

-- David Greaves <david@dgreaves.com> Wed, 04 May 2011 00:34:30 +0100

python-ruote-amqp (2.0.0-1) unstable; urgency=low

* Use properties extensively. This is an API break
Expand Down
4 changes: 2 additions & 2 deletions rpm/python-ruote-amqp.spec
@@ -1,6 +1,6 @@
%define name python-ruote-amqp
%define version 2.0.0
%define unmangled_version 2.0.0
%define version 2.0.1
%define unmangled_version 2.0.1
%define release 1

%define python python%{?__python_ver}
Expand Down

0 comments on commit 4420596

Please sign in to comment.