Skip to content

Commit

Permalink
Fix 'assignment to keyword' Py3k error in 'ZEO.scripts.zeoqueue'.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed May 21, 2013
1 parent 33a1d9d commit 26f0140
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGES
=======

Unreleased
----------

- Fix "assignment to keyword" error under Py3k in 'ZEO.scripts.zeoqueue'.

4.0.0b1 (2013-05-20)
--------------------

Expand Down
6 changes: 0 additions & 6 deletions src/ZEO/scripts/zeoqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@
STATEFILE = 'zeoqueue.pck'
PROGRAM = sys.argv[0]

try:
True, False
except NameError:
True = 1
False = 0



tcre = re.compile(r"""
Expand Down

0 comments on commit 26f0140

Please sign in to comment.