Skip to content

Commit

Permalink
lsp.py: fix style (indentation)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgingold committed Jul 3, 2021
1 parent 3f2abaf commit 606a24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyGHDL/cli/lsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 606a24c

Please sign in to comment.