diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e4739ab..56134c50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,6 @@ All notable changes to Tailbone will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## v0.22.11 (2025-09-20) - -### Fix - -- avoid error when row object missing field - ## v0.22.10 (2025-09-20) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 1f0996a0..d6e8ec92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "Tailbone" -version = "0.22.11" +version = "0.22.10" description = "Backoffice Web Application for Rattail" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] diff --git a/tailbone/grids/core.py b/tailbone/grids/core.py index b1533747..56b97b86 100644 --- a/tailbone/grids/core.py +++ b/tailbone/grids/core.py @@ -578,7 +578,7 @@ class Grid(WuttaGrid): try: return obj[column_name] - except (TypeError, KeyError): + except TypeError: pass def render_currency(self, obj, column_name):