diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 21:59:10 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 21:59:10 +0100 |
commit | 8e7d14bae4d3c836f029a1235eb227380acc3f75 (patch) | |
tree | ebd0679642cccb994e70a89a106b394189cb28bc /module/utils/printer.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-8e7d14bae4d3c836f029a1235eb227380acc3f75.tar.xz |
Fix plugins to work on 0.4.10
Diffstat (limited to 'module/utils/printer.py')
-rw-r--r-- | module/utils/printer.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/module/utils/printer.py b/module/utils/printer.py deleted file mode 100644 index 5d333e238..000000000 --- a/module/utils/printer.py +++ /dev/null @@ -1,16 +0,0 @@ -# -*- coding: utf-8 -*- -# @author: vuolter - -import colorama - -colorama.init(autoreset=True) - -def color(color, text): - return colorama.Fore.(c.upper())(text) - -for c in colorama.Fore: - eval("%(color) = lambda msg: color(%(color), msg)" % {'color': c.lower()} - - -def overline(line, msg): - print "\033[%(line)s;0H\033[2K%(msg)s" % {'line': str(line), 'msg': msg} |