Use s# instead of t# for nis_match.
diff --git a/Modules/nismodule.c b/Modules/nismodule.c
index 859042f..bf2d185 100644
--- a/Modules/nismodule.c
+++ b/Modules/nismodule.c
@@ -163,7 +163,7 @@
 	static char *kwlist[] = {"key", "map", "domain", NULL};
 
 	if (!PyArg_ParseTupleAndKeywords(args, kwdict,
-					 "t#s|s:match", kwlist,
+					 "s#s|s:match", kwlist,
 					 &key, &keylen, &map, &domain))
 		return NULL;
 	if (!domain && ((err = yp_get_default_domain(&domain)) != 0))