adding blink modifier

This commit is contained in:
Gabriel Falcão 2010-04-18 23:36:40 -03:00
parent cc69863a64
commit 3a2ae47c33
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ def ansify(number):
class modifiers:
reset = ansify(0)
bold = ansify(1)
blink = ansify(2)
italic = ansify(3)
underline = ansify(4)
inverse = ansify(7)