浏览代码

Merge fix for formatting of 'extension not found' messages.

Jelmer Vernooij 13 年之前
父节点
当前提交
563ec0f763
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/tests/utils.py

+ 1 - 1
dulwich/tests/utils.py

@@ -159,7 +159,7 @@ def ext_functest_builder(method, func):
 
     def do_test(self):
         if not isinstance(func, types.BuiltinFunctionType):
-            raise SkipTest("%s extension not found", func.func_name)
+            raise SkipTest("%s extension not found" % func.func_name)
         method(self, func)
 
     return do_test