mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
fix: Replace error message with raw exception
This commit is contained in:
parent
cb7879a89a
commit
ac5667696c
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ def process_markdown(filename):
|
|||
except FileNotFoundError:
|
||||
print(json.dumps({"error": f"File '{filename}' not found."}, indent=4))
|
||||
except Exception as e:
|
||||
print(json.dumps({"error": f"An error occurred: {str(e)}"}, indent=4))
|
||||
print(e)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue