From af40b19a2dab00ab1cd73c7055f37046cefa4025 Mon Sep 17 00:00:00 2001 From: Alan Fairless Date: Thu, 31 Oct 2013 12:34:51 -0500 Subject: [PATCH] Fix format string typo --- hacking/module_formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py index 7232b534366..608b0f776e4 100755 --- a/hacking/module_formatter.py +++ b/hacking/module_formatter.py @@ -144,7 +144,7 @@ def return_data(text, options, outputname, module): def boilerplate(): if not os.path.exists(EXAMPLE_YAML): - print >>sys.stderr, "Missing example boiler plate: %S" % EXAMPLE_YAML + print >>sys.stderr, "Missing example boiler plate: %s" % EXAMPLE_YAML print "DOCUMENTATION = '''" print file(EXAMPLE_YAML).read() print "'''"