From 8ecb55f9e18fc4571273477c91cf27a2aa701081 Mon Sep 17 00:00:00 2001 From: Gregory Smith Date: Tue, 25 Aug 2015 09:49:35 -0700 Subject: [PATCH] Fix pylint errors. --- salt/modules/augeas_cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/modules/augeas_cfg.py b/salt/modules/augeas_cfg.py index 751b08d1f6..7529f8881d 100644 --- a/salt/modules/augeas_cfg.py +++ b/salt/modules/augeas_cfg.py @@ -169,7 +169,7 @@ def execute(context=None, lens=None, commands=()): elif method == 'insert': label, where, path = parts if where not in ("before", "after"): - raise ValueError("Expected 'before' or 'after', not %r" % (where,)) + raise ValueError("Expected 'before' or 'after', not %r" % (where,)) path = make_path(path) args = {'path': path, 'label': label, 'before': where == 'before'} elif method == 'remove':