File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 343343 " if app_id == '': print('Error: App ID cannot be an empty string'); return\n " ,
344344 " if not path.is_dir(): print(\" Error: Path should point to the project directory\" ); return\n " ,
345345 " try: validate_app(path)\n " ,
346- " except PlashAppError as e: print(f\" Error: {str(e)}\\ nInvalid path: {path}\" ); return\n " ,
346+ " except PlashError as e: print(f\" Error: {str(e)}\\ nInvalid path: {path}\" ); return\n " ,
347347 " \n " ,
348348 " try: \n " ,
349349 " if not app_id: app_id = get_app_id(path)\n " ,
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ def deploy(
130130 if app_id == '' : print ('Error: App ID cannot be an empty string' ); return
131131 if not path .is_dir (): print ("Error: Path should point to the project directory" ); return
132132 try : validate_app (path )
133- except PlashAppError as e : print (f"Error: { str (e )} \n Invalid path: { path } " ); return
133+ except PlashError as e : print (f"Error: { str (e )} \n Invalid path: { path } " ); return
134134
135135 try :
136136 if not app_id : app_id = get_app_id (path )
You can’t perform that action at this time.
0 commit comments