diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-27 17:07:33 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-27 17:07:33 +0200 |
commit | a33d8062833d1bfec4777145cc484c1d6b9e141f (patch) | |
tree | 7d815f80cdcced2d36144b9b71760278d29ed007 /interfaces | |
parent | locale fixes (diff) | |
download | pyload-a33d8062833d1bfec4777145cc484c1d6b9e141f.tar.xz |
some automatic fixes
Diffstat (limited to 'interfaces')
-rwxr-xr-x | interfaces/pyLoadCli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/pyLoadCli.py b/interfaces/pyLoadCli.py index fc8af9b86..8fdd75016 100755 --- a/interfaces/pyLoadCli.py +++ b/interfaces/pyLoadCli.py @@ -538,7 +538,7 @@ if __name__ == "__main__": if not server_url: if not username: username = raw_input(_("Username: ")) if not addr: addr = raw_input(_("address: ")) - if ssl == None: + if ssl is None: ssl = raw_input(_("Use SSL? ([y]/n): ")) if ssl == "y" or ssl == "": ssl = "s" |