summaryrefslogtreecommitdiffstats
path: root/pyload/cli/printer.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-09-08 01:16:38 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-09-14 11:03:34 +0200
commitbe1df32bd3faa571343913da7f88d6b40378b195 (patch)
treefb2d9ff8ce2eb57d0ed42657dcc8be53f972c03d /pyload/cli/printer.py
parentRestructure pyload file tree (1) (diff)
downloadpyload-be1df32bd3faa571343913da7f88d6b40378b195.tar.xz
New printer (windows compatible)
Diffstat (limited to 'pyload/cli/printer.py')
-rw-r--r--pyload/cli/printer.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/pyload/cli/printer.py b/pyload/cli/printer.py
deleted file mode 100644
index 0b2f5a0e3..000000000
--- a/pyload/cli/printer.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-
-def blue(string):
- return "\033[1;34m" + unicode(string) + "\033[0m"
-
-def green(string):
- return "\033[1;32m" + unicode(string) + "\033[0m"
-
-def yellow(string):
- return "\033[1;33m" + unicode(string) + "\033[0m"
-
-def red(string):
- return "\033[1;31m" + unicode(string) + "\033[0m"
-
-def cyan(string):
- return "\033[1;36m" + unicode(string) + "\033[0m"
-
-def mag(string):
- return "\033[1;35m" + unicode(string) + "\033[0m"
-
-def white(string):
- return "\033[1;37m" + unicode(string) + "\033[0m"
-
-def println(line, content):
- print "\033[" + str(line) + ";0H\033[2K" + content