dagparser: fix variable name in error message
There's no variable named 'type'.
--- a/mercurial/dagparser.py Sun Sep 03 17:47:21 2017 +0900
+++ b/mercurial/dagparser.py Sun Sep 03 15:22:54 2017 +0900
@@ -368,7 +368,7 @@
yield '\n'
else:
raise error.Abort(_("invalid event type in dag: %s")
- % str((type, data)))
+ % str((kind, data)))
if run:
yield '+' + str(run)