mirror of
				https://github.com/python-escpos/python-escpos
				synced 2025-10-23 09:30:00 +00:00 
			
		
		
		
	Fix for string operation
* With Python version 3 data and text are treated different. Convert the * text accordingly.
This commit is contained in:
		| @@ -159,7 +159,10 @@ class File(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.write(msg); |         if type(msg) is str: | ||||||
|  |             self.device.write(msg.encode()); | ||||||
|  |         else: | ||||||
|  |             self.device.write(msg); | ||||||
|  |  | ||||||
|  |  | ||||||
|     def __del__(self): |     def __del__(self): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Christoph Heuel
					Christoph Heuel