rst: add indexes to format strings
For Python 2.6 compatibility. You're only allowed to omit the positional argument specifiers in Python 2.7 and later.master
parent
7b78a21580
commit
7da92e296b
|
@ -56,7 +56,7 @@ def rst2html(proxy, *args):
|
|||
try:
|
||||
from docutils.core import publish_parts
|
||||
except ImportError as e:
|
||||
proxy.error('cannot import docutils.core: {}: {}'.format(
|
||||
proxy.error('cannot import docutils.core: {0}: {1}'.format(
|
||||
e.__class__.__name__, e))
|
||||
raise
|
||||
|
||||
|
@ -77,7 +77,7 @@ def getsetup(proxy, *kwargs):
|
|||
return 'plugin', { 'safe' : 1, 'rebuild' : 1, 'section' : 'format' }
|
||||
|
||||
def debug(s):
|
||||
_sys.stderr.write(__name__ + ':DEBUG:{}\n'.format(s))
|
||||
_sys.stderr.write(__name__ + ':DEBUG:{0}\n'.format(s))
|
||||
_sys.stderr.flush()
|
||||
|
||||
proxy = IkiWikiProcedureProxy(__name__, debug_fn=None)
|
||||
|
|
Loading…
Reference in New Issue