From cf606f0a3cab3dbe8f9fdaa2ccc4882c594ce2af Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Wed, 6 Oct 2021 14:07:20 +0100 Subject: [PATCH] changelog, doc fix --- CHANGELOG.md | 3 +-- docs/source/traceback.rst | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ddd0cd21..5e45601a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - ## [10.12.0] - 2021-10-06 ### Updated -- Officual Py3.10 release +- Official Py3.10 release ## [10.11.0] - 2021-09-24 diff --git a/docs/source/traceback.rst b/docs/source/traceback.rst index 00cb69138..6b1a6f9ce 100644 --- a/docs/source/traceback.rst +++ b/docs/source/traceback.rst @@ -42,7 +42,7 @@ Suppressing Frames If you are working with a framework (click, django etc), you may only be interested in seeing the code from your own application within the traceback. You can exclude framework code by setting the `suppress` argument on `Traceback`, `install`, and `Console.print_exception`, which should be a list of modules or str paths. -Here's how you would exclude [click](https://click.palletsprojects.com/en/8.0.x/) from Rich exceptions:: +Here's how you would exclude `click `_ from Rich exceptions:: import click from rich.traceback import install