fix --help output for ini-options

This commit is contained in:
holger krekel 2010-10-31 19:02:38 +01:00
parent 23f8d8bce7
commit 868670b5f2
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ def showhelp(config):
tw.line("setup.cfg or tox.ini options to be put into [pytest] section:")
tw.line()
for name, help in sorted(config._parser._inidict.items()):
for name, (help, type) in sorted(config._parser._inidict.items()):
line = " %-15s %s" %(name, help)
tw.line(line[:tw.fullwidth])