diff --git a/pupy/pupygen.py b/pupy/pupygen.py index 8aedbf69..af2e3689 100755 --- a/pupy/pupygen.py +++ b/pupy/pupygen.py @@ -63,8 +63,8 @@ def get_raw_conf(conf, obfuscate=False): obf_func=compress_encode_obfs - l=launchers[args.launcher]() - l.parse_args(args.launcher_args) + l=launchers[conf['launcher']]() + l.parse_args(conf['launcher_args']) t=transports[l.get_transport()] creds_src=open("crypto/credentials.py","r").read() creds={} diff --git a/pupy/pupysh.py b/pupy/pupysh.py index fafbb68d..34f58469 100755 --- a/pupy/pupysh.py +++ b/pupy/pupysh.py @@ -31,8 +31,8 @@ import os.path import network.conf __author__='Nicolas VERDIER' -__version__='v1.2' -__date__='May 04 2016' +__version__='v1.3' +__date__='Jun 17 2016' def print_version(): print("Pupy - %s"%(__version__))