diff -pruN 0.2.4.6-0.1/debian/changelog 0.2.4.7-0.2/debian/changelog
--- 0.2.4.6-0.1/debian/changelog	2022-02-09 09:55:50.000000000 +0000
+++ 0.2.4.7-0.2/debian/changelog	2022-08-01 09:20:26.000000000 +0000
@@ -1,3 +1,22 @@
+decopy (0.2.4.7-0.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Revert "Update lintian tags"
+
+ -- Jochen Sprickerhof <jspricke@debian.org>  Mon, 01 Aug 2022 11:20:26 +0200
+
+decopy (0.2.4.7-0.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add gbp.conf for debian-branch
+  * Release version 0.2.4.7
+    - Fix another regex
+    - Catch ValueError from new python-debian (Closes: #1015060)
+  * Bump policy version (no changes)
+  * Update lintian tags
+
+ -- Jochen Sprickerhof <jspricke@debian.org>  Mon, 01 Aug 2022 09:41:43 +0200
+
 decopy (0.2.4.6-0.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -pruN 0.2.4.6-0.1/debian/control 0.2.4.7-0.2/debian/control
--- 0.2.4.6-0.1/debian/control	2022-02-09 09:55:50.000000000 +0000
+++ 0.2.4.7-0.2/debian/control	2022-08-01 07:40:23.000000000 +0000
@@ -11,7 +11,7 @@ Build-Depends:
  python3-setuptools,
  python3-xdg,
  ronn,
-Standards-Version: 4.6.0
+Standards-Version: 4.6.1
 Rules-Requires-Root: no
 Homepage: https://salsa.debian.org/debian/decopy
 Vcs-Browser: https://salsa.debian.org/debian/decopy
diff -pruN 0.2.4.6-0.1/debian/gbp.conf 0.2.4.7-0.2/debian/gbp.conf
--- 0.2.4.6-0.1/debian/gbp.conf	1970-01-01 00:00:00.000000000 +0000
+++ 0.2.4.7-0.2/debian/gbp.conf	2022-08-01 07:32:45.000000000 +0000
@@ -0,0 +1,3 @@
+[DEFAULT]
+debian-branch = debian/master
+pristine-tar = False
diff -pruN 0.2.4.6-0.1/decopy/dep5.py 0.2.4.7-0.2/decopy/dep5.py
--- 0.2.4.6-0.1/decopy/dep5.py	2022-02-09 09:55:00.000000000 +0000
+++ 0.2.4.7-0.2/decopy/dep5.py	2022-08-01 07:32:14.000000000 +0000
@@ -60,7 +60,7 @@ class Copyright(dc.Copyright):
         try:
             with open(filename) as c:
                 copyright_ = Copyright(c, strict=False)
-        except dc.NotMachineReadableError:
+        except (dc.NotMachineReadableError, ValueError):
             return Copyright()
 
         return copyright_
diff -pruN 0.2.4.6-0.1/decopy/res.py 0.2.4.7-0.2/decopy/res.py
--- 0.2.4.6-0.1/decopy/res.py	2022-02-09 09:55:00.000000000 +0000
+++ 0.2.4.7-0.2/decopy/res.py	2022-08-01 07:32:14.000000000 +0000
@@ -3215,7 +3215,7 @@ LICENSES_RES = (
         r'https?[: ]/?/?www.imagemagick.org/script/license.php '
         r'Unless required by applicable law or agreed to in writing, '
         r'software distributed under the License is distributed on an '
-        r'(?:``|''|")?AS IS(?:''|")? BASIS, WITHOUT WARRANTIES OR '
+        r'''(?:``|''|")?AS IS(?:''|")? BASIS, WITHOUT WARRANTIES OR '''
         r'CONDITIONS OF ANY KIND, either express or implied. See the '
         r'License for the specific language governing permissions and '
         r'limitations under the License.',
diff -pruN 0.2.4.6-0.1/setup.py 0.2.4.7-0.2/setup.py
--- 0.2.4.6-0.1/setup.py	2022-02-09 09:55:00.000000000 +0000
+++ 0.2.4.7-0.2/setup.py	2022-08-01 07:32:14.000000000 +0000
@@ -4,7 +4,7 @@ from setuptools import setup, find_packa
 
 setup(
     name='Decopy',
-    version='0.2.4.6',
+    version='0.2.4.7',
     author='Maximiliano Curia',
     author_email='maxy@debian.org',
     description='Automatic debian/copyright Generator',
