Add explicit positional argument specifiers to .format() strings python2.6
authorW. Trevor King <wking@tremily.us>
Sat, 17 Nov 2012 13:16:54 +0000 (08:16 -0500)
committerW. Trevor King <wking@tremily.us>
Sat, 17 Nov 2012 13:40:00 +0000 (08:40 -0500)
commit0b0e4f6648f04e8c3066b77d17bc46bef0cc027f
treed11fdb3c27624e652174e7082528ccdb27ad85c2
parentb0bf9d18cce9e0f70db29fa7083cfcfba64545f0
Add explicit positional argument specifiers to .format() strings

This fixes issues with Python 2.6 (before the implicit specifiers
introduced by Python 2.7).

  On Fri, Nov 16, 2012 at 09:04:56AM -0600, Daniel Heater wrote:
  > ...
  > Traceback (most recent call last):
  >   File "setup.py", line 22, in <module>
  >     version='{}'.format(version.version()),
  > ValueError: zero length field name in format
  > ...
13 files changed:
libbe/bug.py
libbe/bugdir.py
libbe/command/diff.py
libbe/command/html.py
libbe/command/import_xml.py
libbe/command/serve_commands.py
libbe/command/util.py
libbe/comment.py
libbe/ui/command_line.py
libbe/util/http.py
libbe/util/wsgi.py
setup.py
test.py