diff options
author | http://thm.id.fedoraproject.org/ <thm@web> | 2018-03-04 10:56:18 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2018-03-04 10:56:18 +0000 |
commit | 7253137b31e51434858a7d1b98a326bedbfcebe6 (patch) | |
tree | a4a66264f51448d5f07a08691ec91a87336fcf56 /t | |
parent | 2b754d446c2eaaa5fd21a3854b0e07e838a0aacf (diff) | |
download | ikiwiki-7253137b31e51434858a7d1b98a326bedbfcebe6.tar ikiwiki-7253137b31e51434858a7d1b98a326bedbfcebe6.tar.gz |
rst test: Probe for docutils Python 3 module, not Python 2
Diffstat (limited to 't')
-rwxr-xr-x | t/rst.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"'; } } |