Fixed missing import in soc/models/organization.py.
authorLennard de Rijk <ljvderijk@gmail.com>
Wed, 07 Jan 2009 20:56:50 +0000
changeset 775 d18d286df40f
parent 774 88a827a9b614
child 776 f86a76f52bf4
Fixed missing import in soc/models/organization.py. Patch by: Lennard de Rijk
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" <pawel.solyga@gmail.com>',
 ]
 
 
+from google.appengine.ext import db
+
+from django.utils.translation import ugettext_lazy
+
 import soc.models.group