aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorhttp://thm.id.fedoraproject.org/ <thm@web>2018-03-04 10:56:18 +0000
committerSimon McVittie <smcv@debian.org>2018-03-04 10:56:18 +0000
commit7253137b31e51434858a7d1b98a326bedbfcebe6 (patch)
treea4a66264f51448d5f07a08691ec91a87336fcf56 /t
parent2b754d446c2eaaa5fd21a3854b0e07e838a0aacf (diff)
downloadikiwiki-7253137b31e51434858a7d1b98a326bedbfcebe6.tar
ikiwiki-7253137b31e51434858a7d1b98a326bedbfcebe6.tar.gz
rst test: Probe for docutils Python 3 module, not Python 2
Diffstat (limited to 't')
-rwxr-xr-xt/rst.t2
1 files changed, 1 insertions, 1 deletions
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"';
}
}