typo in args error reporting

svn: r21017
This commit is contained in:
Doug Blank 2013-01-06 21:49:47 +00:00
parent 7dd022bddf
commit 32b6b27dca

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)