summaryrefslogtreecommitdiff
path: root/debian/patches/01_selftest_package
blob: b14ace32970ec3a2c310d4677764bd7e36bb371d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Suggest installing python-breezy.tests when breezy.tests is unavailable
Author: Jelmer Vernooij <jelmer@debian.org>
Status: Not upstream, Debian-specific

=== modified file 'breezy/builtins.py'
--- old/breezy/builtins.py	2021-05-03 14:02:26 +0000
+++ new/breezy/builtins.py	2021-05-03 14:14:13 +0000
@@ -4225,7 +4225,9 @@
             from . import tests
         except ImportError as e:
             raise errors.CommandError("tests not available. Install the "
-                                         "breezy tests to run the breezy testsuite.")
+                                      "python-breezy.tests package to run "
+                                      "the breezy testsuite.")
+
 
         if testspecs_list is not None:
             pattern = '|'.join(testspecs_list)