diff --git a/apps/registration/models.py b/apps/registration/models.py index 83d25306d3..db274aed2e 100644 --- a/apps/registration/models.py +++ b/apps/registration/models.py @@ -27,7 +27,7 @@ class RegistrationSingleton(Singleton): @classmethod def registration_state(cls): - if cls._registered: + if cls._registered is not None: return cls._registered else: instance = cls.objects.get()