Skip to content

Commit

Permalink
Merge pull request #1112 from xzzy/master2
Browse files Browse the repository at this point in the history
Fix for legacy account form
  • Loading branch information
xzzy authored Jan 13, 2025
2 parents 529152b + bb68f91 commit 1ad3dde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ledger/accounts/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class Meta:
def __init__(self, *args, **kwargs):
email_required = kwargs.pop('email_required', True)

super(EmailUserForm, self).__init__(*args, **kwargs)
super(EmailUserLegacyForm, self).__init__(*args, **kwargs)

self.fields['email'].required = email_required

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='ledger',
version='2.6',
version='2.7',
description='Ledger Payments App',
url='https://github.com/dbca-wa/ledger',
author='Department of Parks and Wildlife',
Expand Down

0 comments on commit 1ad3dde

Please sign in to comment.