summaryrefslogtreecommitdiff
path: root/pelican/tests/support.py
diff options
context:
space:
mode:
Diffstat (limited to 'pelican/tests/support.py')
-rw-r--r--pelican/tests/support.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pelican/tests/support.py b/pelican/tests/support.py
index 327e672d..8a22052e 100644
--- a/pelican/tests/support.py
+++ b/pelican/tests/support.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-
import locale
import logging
import os
@@ -134,7 +132,7 @@ def skipIfNoExecutable(executable):
res = None
if res is None:
- return unittest.skip('{0} executable not found'.format(executable))
+ return unittest.skip('{} executable not found'.format(executable))
return lambda func: func