we probably want to send all the data

This commit is contained in:
Davis Goglin 2014-03-14 09:05:47 -07:00
parent ea1364bcc8
commit 417476030e
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class Network(Escpos):
def _raw(self, msg): def _raw(self, msg):
""" Print any command sent in raw format """ """ Print any command sent in raw format """
self.device.send(msg) self.device.sendall(msg)
def __del__(self): def __del__(self):