use print function in example
This commit is contained in:
parent
f885de2f2a
commit
1579f05cb7
|
@ -1,6 +1,8 @@
|
||||||
"""Prints code page tables.
|
"""Prints code page tables.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import six
|
import six
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -21,7 +23,7 @@ def main():
|
||||||
|
|
||||||
dummy.cut()
|
dummy.cut()
|
||||||
|
|
||||||
print dummy.output
|
print(dummy.output)
|
||||||
|
|
||||||
|
|
||||||
def print_codepage(printer, codepage):
|
def print_codepage(printer, codepage):
|
||||||
|
|
Loading…
Reference in New Issue