Initial checkin of mod_python json interface
[plcapi.git] / PLC / Addresses.py
index 82c5bd6..8098ce0 100644 (file)
@@ -1,4 +1,6 @@
 # $Id$
+# $URL$
+
 from PLC.Faults import *
 from PLC.Parameter import Parameter
 from PLC.Table import Row, Table
@@ -85,7 +87,7 @@ class Addresses(Table):
     """
 
     def __init__(self, api, address_filter = None, columns = None):
-       Table.__init__(self, api, Address, columns)
+        Table.__init__(self, api, Address, columns)
 
         sql = "SELECT %s FROM view_addresses WHERE True" % \
               ", ".join(self.columns)