# HG changeset patch # User Lennard de Rijk # Date 1231361810 0 # Node ID d18d286df40ff9d173cd0ae4caaf7b6c43ce8ac9 # Parent 88a827a9b6147b5b70e6a7d5700735e47dfdeb47 Fixed missing import in soc/models/organization.py. Patch by: Lennard de Rijk diff -r 88a827a9b614 -r d18d286df40f app/soc/models/organization.py --- a/app/soc/models/organization.py Wed Jan 07 20:30:38 2009 +0000 +++ b/app/soc/models/organization.py Wed Jan 07 20:56:50 2009 +0000 @@ -14,13 +14,18 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""This module contains the Organization Model.""" +"""This module contains the Organization Model. +""" __authors__ = [ '"Pawel Solyga" ', ] +from google.appengine.ext import db + +from django.utils.translation import ugettext_lazy + import soc.models.group