Skip to content

Commit

Permalink
Remove unwanted .
Browse files Browse the repository at this point in the history
  • Loading branch information
HEnquist committed Sep 28, 2024
1 parent 309b468 commit 9584d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/filemanagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def list_of_files_in_directory(folder, file_stats=True, title_and_desc=False):
desc = "This config file has a YAML syntax error."
if hasattr(e, 'problem_mark'):
mark = e.problem_mark
desc = f"This file has a YAML syntax error on line: {mark.line + 1}, column: {mark.column + 1}."
desc = f"This file has a YAML syntax error on line: {mark.line + 1}, column: {mark.column + 1}"
except (AttributeError, UnicodeDecodeError):
title = "(not a YAML file)"
desc = "This does not appear to be a YAML file."
Expand Down

0 comments on commit 9584d94

Please sign in to comment.