We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1857a0 commit 36bbf6eCopy full SHA for 36bbf6e
printer.py
@@ -2,7 +2,7 @@
2
PC-BASIC 3.23 - printer.py
3
Line printer output
4
5
-(c) 2013, 2014 Rob Hagemans
+(c) 2013, 2014, 2015 Rob Hagemans
6
This file is released under the GNU GPL version 3.
7
"""
8
@@ -35,8 +35,8 @@ def flush(self):
35
utf8buf = unicodepage.UTF8Converter(preserve_control=True).to_utf8(printbuf)
36
line_print(utf8buf, self.printer_name)
37
38
-# only needed on Windows
39
-wait = lambda x: None
+# empty function, only needed & defined on Windows
+wait = lambda: None
40
41
if plat.system == 'Windows':
42
import os
0 commit comments