Skip to content

Commit

Permalink
fix imports :/
Browse files Browse the repository at this point in the history
  • Loading branch information
rep committed Apr 4, 2011
1 parent 6d3c3ff commit 44dee09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/evnetcat.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import traceback import traceback
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)


from pwrcall.pyevloop import PlainClientConnection, loop, unloop from evnet import PlainClientConnection, loop, unloop


def filegen(fobj): def filegen(fobj):
d = fobj.read(1024**2) d = fobj.read(1024**2)
Expand Down
7 changes: 3 additions & 4 deletions examples/evnetcatsrv.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
import struct import struct
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)


from pwrcall.pyevloop import loop, unloop, listenplain from evnet import loop, unloop, listenplain
from pwrcall.promise import Promise from evnet.util EventGen
from pwrcall.util import EventGen from evnet.promise import Promise



class WebSockListener(EventGen): class WebSockListener(EventGen):
def __init__(self, port): def __init__(self, port):
Expand Down

0 comments on commit 44dee09

Please sign in to comment.