From 131389a4c4296ff5b2a14a1d00ca6f8f71b4e3c9 Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Sun, 26 Feb 2017 22:01:38 -0500 Subject: [PATCH] flake --- xonsh/execer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xonsh/execer.py b/xonsh/execer.py index 18ee9d2f6..76131f3a8 100644 --- a/xonsh/execer.py +++ b/xonsh/execer.py @@ -174,8 +174,8 @@ class Execer(object): if original_error is None: original_error = e if (e.loc is None) or (last_error_line == e.loc.lineno and - last_error_col in (e.loc.column + 1, - e.loc.column)): + last_error_col in (e.loc.column + 1, + e.loc.column)): raise original_error from None last_error_col = e.loc.column last_error_line = e.loc.lineno