Style fixes in soc.logic.models modules (basically removing of extra whitespaces).
authorPawel Solyga <Pawel.Solyga@gmail.com>
Sun, 01 Feb 2009 13:24:00 +0000
changeset 1140 a8eaea0b268d
parent 1139 7a6f94ffcc87
child 1141 4a37239d834f
Style fixes in soc.logic.models modules (basically removing of extra whitespaces). Patch by: Pawel Solyga Reviewed by: to-be-reviewed
app/soc/logic/models/club_admin.py
app/soc/logic/models/host.py
app/soc/logic/models/org_admin.py
--- 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