From f99ee27382d4e7976ce1eff27f62c1ac3c1358eb Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 22 May 2016 18:06:51 +0200 Subject: [PATCH] Removed some test data. --- evennia/utils/text2html.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/evennia/utils/text2html.py b/evennia/utils/text2html.py index cb3ec20d7b..1608c10260 100644 --- a/evennia/utils/text2html.py +++ b/evennia/utils/text2html.py @@ -17,7 +17,6 @@ from .ansi import * import time -t0 = time.time() # All xterm256 RGB equivalents XTERM256_FG = "\033[38;5;%sm" @@ -282,5 +281,3 @@ def parse_html(string, strip_ansi=False, parser=HTML_PARSER): Parses a string, replace ANSI markup with html """ return parser.parse(string, strip_ansi=strip_ansi) - -print "t0-t1=", time.time() - t0