From bf3012b88242c55d4a1ea38379d086f2f336714d Mon Sep 17 00:00:00 2001 From: Patrick Kanzler Date: Sat, 2 Apr 2016 10:44:28 +0200 Subject: [PATCH] DOC fix example in readme Example in readme would print only nonsense, because a newline was missing at the end of text --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index fde5e4e..dc31a9a 100644 --- a/README.rst +++ b/README.rst @@ -58,7 +58,7 @@ The basic usage is: """ Seiko Epson Corp. Receipt Printer M129 Definitions (EPSON TM-T88IV) """ Epson = escpos.Escpos(0x04b8,0x0202,0) - Epson.text("Hello World") + Epson.text("Hello World\n") Epson.image("logo.gif") Epson.barcode('1324354657687','EAN13',64,2,'','') Epson.cut()