From 7253137b31e51434858a7d1b98a326bedbfcebe6 Mon Sep 17 00:00:00 2001 From: "http://thm.id.fedoraproject.org/" Date: Sun, 4 Mar 2018 10:56:18 +0000 Subject: rst test: Probe for docutils Python 3 module, not Python 2 --- t/rst.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't') diff --git a/t/rst.t b/t/rst.t index a72c4681c..7908c0fb2 100755 --- a/t/rst.t +++ b/t/rst.t @@ -3,7 +3,7 @@ use warnings; use strict; BEGIN { - if (system("python -c 'import docutils.core'") != 0) { + if (system("python3 -c 'import docutils.core'") != 0) { eval 'use Test::More skip_all => "docutils not available"'; } } -- cgit v1.2.3