From 606a24c2448a02818a1be42fd00d808db20986e7 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sat, 3 Jul 2021 09:49:18 +0200 Subject: lsp.py: fix style (indentation) --- pyGHDL/cli/lsp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyGHDL') diff --git a/pyGHDL/cli/lsp.py b/pyGHDL/cli/lsp.py index acb65b784..fa89bc7e8 100644 --- a/pyGHDL/cli/lsp.py +++ b/pyGHDL/cli/lsp.py @@ -57,7 +57,7 @@ def __rotate_log_files(basename: str, num: int): # one. oldfile = "{}.{}".format(basename, num) if os.path.isfile(oldfile): - os.remove(oldfile) + os.remove(oldfile) # Rotate old files for i in range(num, 0, -1): oldfile = "{}.{}".format(basename, i - 1) -- cgit v1.2.3