first commit
This commit is contained in:
18
lib/framework/init_args.py
Normal file
18
lib/framework/init_args.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#########################################################
|
||||
import sys
|
||||
|
||||
args = None
|
||||
|
||||
|
||||
def process_args():
|
||||
from gommi import process_args
|
||||
|
||||
args = process_args()
|
||||
return args
|
||||
|
||||
|
||||
if sys.argv[0] == "gommi.py":
|
||||
args = process_args()
|
||||
else:
|
||||
args = None
|
||||
Reference in New Issue
Block a user