projects
/
trafficserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c3435e
)
Fix test for python 3.8
author
Matthias Klose
<doko@ubuntu.com>
Sat, 21 May 2022 17:28:31 +0000
(18:28 +0100)
committer
Jean Baptiste Favre
<debian@jbfavre.org>
Sat, 21 May 2022 17:28:31 +0000
(18:28 +0100)
Reviewed-by: Jean Baptiste Favre <jbfavre@debian.org>
Last-Update: 2020-02-03
Last-Update: 2020-02-03
Gbp-Pq: Name 0016-fix_python_3.8.patch
tests/bootstrap.py
patch
|
blob
|
history
diff --git
a/tests/bootstrap.py
b/tests/bootstrap.py
index 190cd2389a7f093b8aa3966eb7e59a83ad4d4c80..34df2e50206be5546cd25e0a5a2f24c4b8a8c427 100755
(executable)
--- a/
tests/bootstrap.py
+++ b/
tests/bootstrap.py
@@
-85,7
+85,8
@@
def command_output(cmd_str):
def get_distro():
- return platform.linux_distribution()
+ import distro
+ return distro.linux_distribution()
def distro_version():