We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a5faf commit 931c81eCopy full SHA for 931c81e
app/directadmin_api.py
@@ -280,8 +280,10 @@ def validate_domain_access(self):
280
return False, "Unable to verify domain access"
281
282
except Exception as e:
283
+ import traceback
284
print(f"Error validating domain access: {e}")
- return False, f"Error validating domain: {str(e)}"
285
+ traceback.print_exc()
286
+ return False, "An internal error occurred while validating domain access."
287
288
def get_email_accounts(self):
289
"""Get all email accounts for the domain"""
0 commit comments