Skip to content

Commit

Permalink
revent: Fix Event source regression
Browse files Browse the repository at this point in the history
The default value for the .source attribute of Events was accidentally
changed from None to False in a6bd164.  Fixed.
  • Loading branch information
czeni authored and MurphyMc committed Mar 24, 2015
1 parent 3d8eac7 commit cfebf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pox/lib/revent/revent.py
Expand Up @@ -158,7 +158,7 @@ class Event (object):
# halt and source aren't really class variables, but this way they get
# created on each instance without having to call the base constructor.
halt = False
source = False
source = None
def __init__ (self):
pass

Expand Down

1 comment on commit cfebf79

@MurphyMc
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See PR #140

Please sign in to comment.