diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-03-10 13:19:36 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-03-10 13:19:36 +0100 |
commit | 64974b9a18ef08f5a9f65a17af5cb06c1db4295c (patch) | |
tree | 7b3699cc77691951654e9b48b38544b203efe1de /module/setup.py | |
parent | link parser from forum thx to ToFF, missing icons (diff) | |
download | pyload-64974b9a18ef08f5a9f65a17af5cb06c1db4295c.tar.xz |
webif user managment
Diffstat (limited to 'module/setup.py')
-rw-r--r-- | module/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/setup.py b/module/setup.py index 6316e295e..9be040b4e 100644 --- a/module/setup.py +++ b/module/setup.py @@ -291,7 +291,7 @@ class Setup(): print "" print _("## SSL Setup ##") print "" - print _("Execute these commands from pyLoad folder to make ssl certificates:") + print _("Execute these commands from pyLoad config folder to make ssl certificates:") print "" print "openssl genrsa -out ssl.key 1024" print "openssl req -new -key ssl.key -out ssl.csr" @@ -318,7 +318,7 @@ class Setup(): print _("2 - List users") print _("3 - Remove user") print _("4 - Quit") - action = raw_input("[1]/2/3/4 ") + action = raw_input("[1]/2/3/4: ") if not action in ("1", "2", "3", "4"): continue elif action == "1": |