diff -pruN 2.0.0-1/debian/changelog 2.0.0-1ubuntu1/debian/changelog
--- 2.0.0-1/debian/changelog	2022-05-26 05:43:10.000000000 +0000
+++ 2.0.0-1ubuntu1/debian/changelog	2022-06-05 07:52:19.000000000 +0000
@@ -1,3 +1,12 @@
+python-argcomplete (2.0.0-1ubuntu1) kinetic; urgency=medium
+
+  * Restore changes accidentally lost in the 1.12.3-0.1 NMU:
+    + debian/rules: Set LC_ALL to C.UTF-8 instead of unsetting it
+    + debian/rules: Unexport TERM to avoid test failure
+    (LP: #1965592)
+
+ -- Graham Inggs <ginggs@ubuntu.com>  Sun, 05 Jun 2022 07:52:19 +0000
+
 python-argcomplete (2.0.0-1) unstable; urgency=medium
 
   + Salvaging package (Closes: #1010301):
diff -pruN 2.0.0-1/debian/control 2.0.0-1ubuntu1/debian/control
--- 2.0.0-1/debian/control	2022-05-26 05:43:10.000000000 +0000
+++ 2.0.0-1ubuntu1/debian/control	2022-06-05 07:52:19.000000000 +0000
@@ -1,5 +1,6 @@
 Source: python-argcomplete
-Maintainer: Debian Python Team <team+python@tracker.debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian Python Team <team+python@tracker.debian.org>
 Uploaders: Marc Dequènes (Duck) <Duck@DuckCorp.org>
 Section: python
 Priority: optional
diff -pruN 2.0.0-1/debian/rules 2.0.0-1ubuntu1/debian/rules
--- 2.0.0-1/debian/rules	2022-05-26 05:43:10.000000000 +0000
+++ 2.0.0-1ubuntu1/debian/rules	2022-05-26 12:05:23.000000000 +0000
@@ -7,7 +7,8 @@ export PYBUILD_NAME=argcomplete
 
 # Avoid failures in unit tests
 # See https://github.com/kislyuk/argcomplete/issues/199
-unexport LC_ALL
+export LC_ALL=C.UTF-8
+unexport TERM
 
 %:
 	dh $@ --with python3 --buildsystem=pybuild
