X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/d6dfd46ed31d985e364b9ea9a404c394f15c2348..70ec9c970b451ee166087a3327a6b906a4777500:/services/firewall/__init__.py diff --git a/services/firewall/__init__.py b/services/firewall/__init__.py index bbdb3fd..738bf67 100644 --- a/services/firewall/__init__.py +++ b/services/firewall/__init__.py @@ -7,8 +7,8 @@ from os import path 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 ServiceHandler, TransactionalHandler __ALL__ = ('FirewallHandler', 'Error', 'RuleError', 'RuleAlreadyExistsError', 'RuleNotFoundError') @@ -174,7 +174,7 @@ class RuleHandler(Handler): return self.rules class FirewallHandler(Restorable, ConfigWriter, ServiceHandler, - TransactionalHandler): + TransactionalHandler): r"""FirewallHandler([pickle_dir[, config_dir]]) -> FirewallHandler instance. Handles firewall commands using iptables.