diff --git a/hc/accounts/management/commands/createsuperuser.py b/hc/accounts/management/commands/createsuperuser.py index ca96f6fe..a90852ee 100644 --- a/hc/accounts/management/commands/createsuperuser.py +++ b/hc/accounts/management/commands/createsuperuser.py @@ -16,7 +16,6 @@ class Command(BaseCommand): raw = input("Email address:") form = AvailableEmailForm({"identity": raw}) if not form.is_valid(): - print(dir(form)) self.stderr.write("Error: " + " ".join(form.errors["identity"])) continue