From c4edb415a2aa70f9ef4e14673cf91ff2878cc983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Tue, 7 Jan 2020 11:47:53 +0200 Subject: [PATCH] Removing debug statement. --- hc/accounts/management/commands/createsuperuser.py | 1 - 1 file changed, 1 deletion(-) 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