Files
Pennyw0rth-NetExec/core/settings.py
T
byt3bl33d3r e7246fd777 Refactor pass 1
Revamped logging and main greenlet
Major code cleanup and bug fixes everywhere
2015-11-08 15:27:33 -07:00

10 lines
299 B
Python

def init_args(arg_namespace):
"""
args will contain a namespace that we can modify whenever we want
orig_args will contain the original namespace (duh!) and should never be modified
"""
global orig_args
orig_args = arg_namespace
global args
args = arg_namespace