File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ def __init__(self, trace: bool = False):
3939 chdir (proj_home )
4040 config_file_path = CONFIG_LOCATION / 'OraTAPI.ini'
4141 if not config_file_path .exists ():
42- raise FileNotFoundError (f'Unable to locate config file: { config_file_path } ' )
42+ print (f'ERROR: Unable to locate config file: { config_file_path } ' )
43+ print (f'This is possibly due to an incomplete installation. Did you run the quick config command?' )
44+ exit (1 )
4345 try :
4446 self .view = Interactions (controller = self , config_file_path = config_file_path )
4547 except MissingParameterError as e :
@@ -51,7 +53,6 @@ def __init__(self, trace: bool = False):
5153 f"optional arguments.\n \n Depending on your platform, you should replace <ora_tapi> with either of "
5254 f"ora_tapi.sh (Linux/macOS/Git Bash) or\n ora_tapi.ps1/ora_tapi (Windows PowerShell).\n "
5355 f"\n Use -h for help."
54-
5556 )
5657 exit (1 ) # Exit with an error status
5758 args_dict = self .view .args_dict
You can’t perform that action at this time.
0 commit comments