~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/chat.py

  • Committer: Matt Giuca
  • Date: 2010-02-25 01:53:19 UTC
  • Revision ID: matt.giuca@gmail.com-20100225015319-7j0oounlhi1bj6fp
Fixed broken console, due to function called with not enough arguments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
            # Grab the input and try to decode
93
93
            inp = recv_netstring(conn)
94
94
            try:
95
 
                content = decode(inp)
 
95
                content = decode(inp, magic)
96
96
            except ProtocolError:
97
97
                conn.close()
98
98
                continue