Browse Source

Remove print statement

Former-commit-id: f6ff85da09ef4d2bcf81346891781c70e6febd60
s-koch 8 years ago
parent
commit
e80747c8f3
1 changed files with 0 additions and 1 deletions
  1. 0 1
      python/tcpviewer.py

+ 0 - 1
python/tcpviewer.py

@@ -42,7 +42,6 @@ class TCPViewer(igl.viewer.Viewer):
             s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
             s.connect((HOST, PORT))
             ser = self.data.serialize()
-            print(len(ser))
             a = array.array('u', ser)
             s.sendall(a)
             s.close()