diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-07-03 09:49:18 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-07-03 09:49:18 +0200 |
commit | 606a24c2448a02818a1be42fd00d808db20986e7 (patch) | |
tree | e83176005ae2881fc9df40b979c08c10dec67a88 /pyGHDL/cli | |
parent | 3f2abaf039f94d9a7cd4ba2ef7295c3448985702 (diff) | |
download | ghdl-606a24c2448a02818a1be42fd00d808db20986e7.tar.gz ghdl-606a24c2448a02818a1be42fd00d808db20986e7.tar.bz2 ghdl-606a24c2448a02818a1be42fd00d808db20986e7.zip |
lsp.py: fix style (indentation)
Diffstat (limited to 'pyGHDL/cli')
-rw-r--r-- | pyGHDL/cli/lsp.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |