typo in args error reporting

svn: r21016
This commit is contained in:
Doug Blank 2013-01-06 21:49:30 +00:00
parent b1da20254a
commit 186d7e0ec4

View File

@ -294,7 +294,7 @@ def __startgramps(errors, argparser):
if argparser.errors:
for error in argparser.errors:
ErrorDialog(argparser.error[0], argparser.error[1])
ErrorDialog(error[0], error[1])
Gtk.main_quit()
sys.exit(1)