]> git.llucax.com Git - software/pymin.git/blobdiff - services/firewall/__init__.py
Add a ParametersHandler to services.util.
[software/pymin.git] / services / firewall / __init__.py
index bbdb3fd53f6a8943ad6ce339933660a5ae371e66..738bf67e82d7e79cfe44f147cb4322dd3d43130b 100644 (file)
@@ -7,8 +7,8 @@ from os import path
 
 from seqtools import Sequence
 from dispatcher import Handler, handler, HandlerError
 
 from seqtools import Sequence
 from dispatcher import Handler, handler, HandlerError
-from services.util import ServiceHandler, TransactionalHandler
 from services.util import Restorable, ConfigWriter
 from services.util import Restorable, ConfigWriter
+from services.util import ServiceHandler, TransactionalHandler
 
 __ALL__ = ('FirewallHandler', 'Error', 'RuleError', 'RuleAlreadyExistsError',
            'RuleNotFoundError')
 
 __ALL__ = ('FirewallHandler', 'Error', 'RuleError', 'RuleAlreadyExistsError',
            'RuleNotFoundError')
@@ -174,7 +174,7 @@ class RuleHandler(Handler):
         return self.rules
 
 class FirewallHandler(Restorable, ConfigWriter, ServiceHandler,
         return self.rules
 
 class FirewallHandler(Restorable, ConfigWriter, ServiceHandler,
-                                                        TransactionalHandler):
+                      TransactionalHandler):
     r"""FirewallHandler([pickle_dir[, config_dir]]) -> FirewallHandler instance.
 
     Handles firewall commands using iptables.
     r"""FirewallHandler([pickle_dir[, config_dir]]) -> FirewallHandler instance.
 
     Handles firewall commands using iptables.