diff options
author | Jan Pokorný <jpokorny@redhat.com> | 2014-06-04 22:31:27 +0200 |
---|---|---|
committer | Jan Pokorný <jpokorny@redhat.com> | 2014-06-04 22:31:27 +0200 |
commit | 5e572cc48f87e1847637c725eb1b749cd04ee5db (patch) | |
tree | 1923b87da7aecde97b4988ae0472a11c8d91e4fe /format.py | |
parent | 83df36426bc4f1ee1a902ae5937df9dcd143e70a (diff) | |
download | clufter-5e572cc48f87e1847637c725eb1b749cd04ee5db.tar.gz clufter-5e572cc48f87e1847637c725eb1b749cd04ee5db.tar.xz clufter-5e572cc48f87e1847637c725eb1b749cd04ee5db.zip |
utils: fix braino in naming: mutable -> immutable
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'format.py')
-rw-r--r-- | format.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ from .error import ClufterError from .plugin_registry import MetaPlugin, PluginRegistry from .utils import arg2wrapped, args2tuple, args2unwrapped, \ classproperty, \ - mutable, \ + immutable, \ tuplist from .utils_xml import rng_pivot @@ -198,7 +198,7 @@ class Format(object): # computed -> stored normalization self.swallow(protocol, *arg2wrapped(produced)) - if protect and not protect_safe and not mutable(produced): + if protect and not protect_safe and not immutable(produced): log.debug("{0}:{1}:Forced deepcopy of `{2}' instance" .format(self.__class__.name, meth.__name__, type(produced).__name__)) |