Index: postman/__init__.py
===================================================================
--- postman/__init__.py	(revision 1)
+++ postman/__init__.py	(revision 4)
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+
+from models import Member, MailingList
+from storage import JsonStorage
Index: postman/models.py
===================================================================
--- postman/models.py	(revision 2)
+++ postman/models.py	(revision 4)
@@ -42,10 +42,6 @@
                                             self.address))
         self.archive = Storage(os.path.join(self.config['archive'],
-                                            self.address))
-        # try to load data from the storage
-        loaded = self.load()
-        # FIXME: if loaded is False, the storage does not exist, perhaps
-        # this would be a good place to create it for the first time
-
+                                            self.address))        
+        
     def __repr__(self):
         return "<MailingList '%s'>" % self.address
@@ -76,5 +72,5 @@
             raise ValueError(address, ' is not a valid email address')
         return address in self.members_addresses()
-
+        
     def members_addresses(self):
         return self.members.keys()
Index: postman/storage.py
===================================================================
--- postman/storage.py	(revision 1)
+++ postman/storage.py	(revision 4)
@@ -21,5 +21,5 @@
         Convert objects to a dictionary of their representation
         Based on the exmplaes from Doyg Hellmann:
-        http://www.doughellmann.com/PyMOTW/json/#working-with-your-own-types        
+        http://www.doughellmann.com/PyMOTW/json/#working-with-your-own-types
         """
         jobj = { '__class__':obj.__class__.__name__, 
