From 92cb3a81ff1a415ddde095f87b9e22e49f1102f3 Mon Sep 17 00:00:00 2001 From: Morten Enemark Lund Date: Sat, 15 Oct 2016 16:58:52 +0200 Subject: [PATCH] Pep8 --- xonsh/commands_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xonsh/commands_cache.py b/xonsh/commands_cache.py index f5b884a71..27460a8e2 100644 --- a/xonsh/commands_cache.py +++ b/xonsh/commands_cache.py @@ -168,7 +168,7 @@ class CommandsCache(cabc.Mapping): def predict_backgroundable(self, cmd): """Predics whether a command list is backgroundable.""" name = self.cached_name(cmd[0]) - if ON_WINDOWS: + if ON_WINDOWS: # On all names (keys) are stored in upper case so instead # we get the original cmd or alias name path, _ = self.lazyget(name, (None, None))