Removes print statement

This commit is contained in:
Mouse Reeve 2021-01-06 16:01:37 -08:00
parent 54f27519df
commit e4fbfc369c

View file

@ -170,7 +170,6 @@ class User(OrderedCollectionPageMixin, AbstractUser):
def save(self, *args, **kwargs):
''' populate fields for new local users '''
# this user already exists, no need to populate fields
print(self.username)
if not self.local and not re.match(regex.full_username, self.username):
# generate a username that uses the domain (webfinger format)
actor_parts = urlparse(self.remote_id)