summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2017-06-30 08:35:58 -0400
committerSimon Charette <charette.s@gmail.com>2017-06-30 12:50:37 -0400
commit5cbcb3683964205ce023157ca181d05a31be2ab5 (patch)
tree9e5e6a3a8c9d4bb6258b2878f2fb26bd61fcc35a /docs
parentb9f7dce84b7ab5e198129030eae6c1a4aec83d24 (diff)
Fixed #28350 -- Fixed UnboundLocalError crash in RenameField with nonexistent field.
Thanks Tim for the review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index 1c716bf5a3..227c94abb4 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -54,3 +54,6 @@ Bugfixes
* Prevented a primary key alteration from adding a foreign key constraint if
``db_constraint=False`` (:ticket:`28298`).
+
+* Fixed ``UnboundLocalError`` crash in ``RenameField`` with nonexistent field
+ (:ticket:`28350`).