diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-03-28 22:37:38 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-06-28 02:47:21 +0200 |
commit | 97ab599dd8aebd14e6f7369a59d415fdeca914bc (patch) | |
tree | fad17453cbf07ab91d81265f618b35622580f7ef /module/cli/printer.py | |
parent | Remove bad whitespaces (diff) | |
download | pyload-97ab599dd8aebd14e6f7369a59d415fdeca914bc.tar.xz |
Fix EOF
Merged vuolter/pyload@2635efd
Diffstat (limited to 'module/cli/printer.py')
-rw-r--r-- | module/cli/printer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/cli/printer.py b/module/cli/printer.py index c62c1800e..5ded53140 100644 --- a/module/cli/printer.py +++ b/module/cli/printer.py @@ -23,4 +23,4 @@ def white(string): return "\033[1;37m" + unicode(string) + "\033[0m" def println(line, content): - print "\033[" + str(line) + ";0H\033[2K" + content
\ No newline at end of file + print "\033[" + str(line) + ";0H\033[2K" + content |