summaryrefslogtreecommitdiffstats
path: root/pyLoadCli.py
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-06-20 16:30:01 +0200
committerGravatar spoob <spoob@gmx.de> 2009-06-20 16:30:01 +0200
commit41f78f21c779e940861fb8f4e2c4436fff2c1f45 (patch)
tree8cc17f6b77f9621922e983c1bd31d53a5ed5a427 /pyLoadCli.py
parentsome new cli stuff (no interactive functions yet) (diff)
downloadpyload-41f78f21c779e940861fb8f4e2c4436fff2c1f45.tar.xz
Added Netload.in Download Plugin
Diffstat (limited to 'pyLoadCli.py')
-rw-r--r--pyLoadCli.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pyLoadCli.py b/pyLoadCli.py
index f948e1fb5..0e9145041 100644
--- a/pyLoadCli.py
+++ b/pyLoadCli.py
@@ -169,12 +169,12 @@ class _GetchWindows:
if __name__ == "__main__":
if len(sys.argv) != 4:
- address = raw_input("Adress:")
- port = raw_input("Port:")
- password = raw_input("Password:")
- #address = "localhost"
- #port = "7272"
- #password = "pwhere"
+ #address = raw_input("Adress:")
+ #port = raw_input("Port:")
+ #password = raw_input("Password:")
+ address = "localhost"
+ port = "7272"
+ password = "pwhere"
cli = pyLoadCli(address, port, password)
else:
cli = pyLoadCli( * sys.argv[1:])