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 | |
parent | Remove bad whitespaces (diff) | |
download | pyload-97ab599dd8aebd14e6f7369a59d415fdeca914bc.tar.xz |
Fix EOF
Merged vuolter/pyload@2635efd
Diffstat (limited to 'module/cli')
-rw-r--r-- | module/cli/AddPackage.py | 2 | ||||
-rw-r--r-- | module/cli/Handler.py | 2 | ||||
-rw-r--r-- | module/cli/__init__.py | 2 | ||||
-rw-r--r-- | module/cli/printer.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/module/cli/AddPackage.py b/module/cli/AddPackage.py index a73401586..2c0c6f170 100644 --- a/module/cli/AddPackage.py +++ b/module/cli/AddPackage.py @@ -63,4 +63,4 @@ class AddPackage(Handler): println(line, "") println(line + 1, mag("0.") + _(" back to main menu")) - return line + 2
\ No newline at end of file + return line + 2 diff --git a/module/cli/Handler.py b/module/cli/Handler.py index 476d09386..13568d570 100644 --- a/module/cli/Handler.py +++ b/module/cli/Handler.py @@ -45,4 +45,4 @@ class Handler: def renderBody(self, line): """ gets the line where to render output and should return the line number below its content """ - return line + 1
\ No newline at end of file + return line + 1 diff --git a/module/cli/__init__.py b/module/cli/__init__.py index fa8a09291..f8db0ae7e 100644 --- a/module/cli/__init__.py +++ b/module/cli/__init__.py @@ -1,2 +1,2 @@ from AddPackage import AddPackage -from ManageFiles import ManageFiles
\ No newline at end of file +from ManageFiles import ManageFiles 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 |