Fixed outdated example file: should be font 'b' not 'B'

Updated AUTHORS using script.
This commit is contained in:
Sergio Pulgarin 2017-08-17 08:45:45 -05:00 committed by Patrick Kanzler
parent 19663ec574
commit 99034d0575
3 changed files with 5 additions and 3 deletions

View File

@ -9,3 +9,4 @@ Renato Lorenzi <renato.lorenzi@senior.com.br> Renato.Lorenzi <renato.lore
Ahmed Tahri <nyuubi.10@gmail.com> TAHRI Ahmed <nyuubi.10@gmail.com>
Michael Elsdörfer <michael@elsdoerfer.com> Michael Elsdörfer <michael@elsdoerfer.info>
csoft2k <csoft2k@hotmail.com>
Sergio Pulgarin <sergio.pulgarin@gmail.com>

View File

@ -22,6 +22,7 @@ Qian Linfeng
Renato Lorenzi
Romain Porte
Sam Cheng
Sergio Pulgarin
Stephan Sokolow
Thijs Triemstra
Thomas van den Berg

View File

@ -37,14 +37,14 @@ def print_codepage(printer, codepage):
sep = ""
# Table header
printer.set(text_type='B')
printer.set(font='b')
printer._raw(" {}\n".format(sep.join(map(lambda s: hex(s)[2:], range(0, 16)))))
printer.set()
# The table
for x in range(0, 16):
# First column
printer.set(text_type='B')
printer.set(font='b')
printer._raw("{} ".format(hex(x)[2:]))
printer.set()