Style fixes in soc.logic.models modules (basically removing of extra whitespaces).
Patch by: Pawel Solyga
Reviewed by: to-be-reviewed
--- a/app/soc/logic/models/club_admin.py Sun Feb 01 13:07:12 2009 +0000
+++ b/app/soc/logic/models/club_admin.py Sun Feb 01 13:24:00 2009 +0000
@@ -50,7 +50,7 @@
if club_entity.status == 'new':
# this club is new so mark as active
- fields = {'status' : 'active'}
+ fields = {'status': 'active'}
club_logic.logic.updateEntityProperties(club_entity, fields)
# call super
--- a/app/soc/logic/models/host.py Sun Feb 01 13:07:12 2009 +0000
+++ b/app/soc/logic/models/host.py Sun Feb 01 13:24:00 2009 +0000
@@ -51,7 +51,7 @@
if sponsor_entity.status == 'new':
# this sponsor is new so mark as active
- fields = {'status' : 'active'}
+ fields = {'status': 'active'}
sponsor_logic.logic.updateEntityProperties(sponsor_entity, fields)
# call super
--- a/app/soc/logic/models/org_admin.py Sun Feb 01 13:07:12 2009 +0000
+++ b/app/soc/logic/models/org_admin.py Sun Feb 01 13:24:00 2009 +0000
@@ -49,7 +49,7 @@
if org_entity.status == 'new':
# this org is new so mark as active
- fields = {'status' : 'active'}
+ fields = {'status': 'active'}
org_logic.logic.updateEntityProperties(org_entity, fields)
# call super