win32/gen_util_scripts.py: Update script type error message

We should also mention glib-genmarshal in the acceptable types, since it
is now a Python script.

Pointed out by John Emmas
This commit is contained in:
Chun-wei Fan 2017-09-07 10:56:18 +08:00
parent b1b00517cf
commit 2204034b9f

View File

@ -32,7 +32,7 @@ def main(argv):
replace_items)
else:
raise ValueError('Type must be glib-mkenums or gdbus-codegen')
raise ValueError('Type must be glib-mkenums, glib-genmarshal or gdbus-codegen')
if __name__ == '__main__':
sys.exit(main(sys.argv))