Skip to content

Commit

Permalink
cleared extra debug messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
artfwo committed Jun 23, 2013
1 parent da5d353 commit 5009e2e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions examples/rove_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def bridge_handler(self, addr, tags, data, client_address):
global backend
msg = OSC.OSCMessage(addr.replace(self.prefix, backend.prefix, 1))
map(msg.append, data)
print "FRONTEND", msg
backend.client.send(msg)

class BridgeBackend(monome.Monome):
Expand All @@ -34,7 +33,6 @@ def monome_handler(self, addr, tags, data, client_address):
global frontend
msg = OSC.OSCMessage(addr.replace(self.prefix, frontend.prefix, 1))
map(msg.append, data)
print "BACKEND", msg
frontend.client.send(msg)

parser = argparse.ArgumentParser()
Expand Down

0 comments on commit 5009e2e

Please sign in to comment.