From 9dddc8ce8c375ce4e0e5e5f79f75b0d03f88a760 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Mon, 3 Oct 2016 13:57:44 +0200 Subject: [PATCH] Coding style. --- tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.py b/tools.py index 39909df..84cb6ea 100644 --- a/tools.py +++ b/tools.py @@ -86,7 +86,7 @@ TIMEOUT = 60 def _fix_input(input_): input_str = input_.decode("utf-8") if isinstance(input_, bytes) else input_ - return input_str.replace("\t", " " * 4) + return input_str.expandtabs(tabsize=4) def _do_command(command, timeout=None, **kwargs):