Skip to content

Commit

Permalink
fix constructor call in example
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed May 1, 2017
1 parent 62d3e4d commit b2c3647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/use_nodecache.py
Expand Up @@ -4,7 +4,7 @@
class WayHandler(o.SimpleHandler):

def __init__(self, idx):
super(WayHandler).__init__()
super(WayHandler, self).__init__()
self.idx = idx

def way(self, w):
Expand Down

0 comments on commit b2c3647

Please sign in to comment.