fix migrate

This commit is contained in:
n1nj4sec 2016-06-17 23:25:32 +02:00
parent 1ee114f863
commit 05cde8a404
2 changed files with 4 additions and 4 deletions

View File

@ -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={}

View File

@ -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__))