summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-04-24 10:19:16 +0200
committerAnton Khirnov <anton@khirnov.net>2021-04-24 10:19:16 +0200
commitf498e86b169fdd9859ee6e062cfe509482baf045 (patch)
treef4a5f1700eae0a56e0d07ca979b7aa3449c3824b
parentf55a44acf4c65e6e7534813b09f9b5b50e5796a6 (diff)
plugins/clean: fix typoHEADmaster
-rw-r--r--dotbot/plugins/clean.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotbot/plugins/clean.py b/dotbot/plugins/clean.py
index 212fb07..b3954c8 100644
--- a/dotbot/plugins/clean.py
+++ b/dotbot/plugins/clean.py
@@ -18,7 +18,7 @@ class Clean(dotbot.Plugin):
if isinstance(targets, dict) and isinstance(targets[target], dict):
force = targets[target].get('force', force)
recursive = targets[target].get('recursive', recursive)
- success &= self._clean(target, force, recurseve, dry_run)
+ success &= self._clean(target, force, recursive, dry_run)
if dry_run:
if success: