diff options
author | Guido van Rossum <guido@python.org> | 1998-10-08 02:25:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-08 02:25:24 (GMT) |
commit | 7e48898d86aaddac7f26b7a859a7b8996dfdbea9 (patch) | |
tree | ab895a2a39069e9c005ee5e887d2292d0e7ab94e /Modules/nismodule.c | |
parent | b317f8aa0d1387f30c72df47bf18cb7517f45f2a (diff) | |
download | cpython-7e48898d86aaddac7f26b7a859a7b8996dfdbea9.zip cpython-7e48898d86aaddac7f26b7a859a7b8996dfdbea9.tar.gz cpython-7e48898d86aaddac7f26b7a859a7b8996dfdbea9.tar.bz2 |
Use the t# format where appropriate. Greg Stein.
Diffstat (limited to 'Modules/nismodule.c')
-rw-r--r-- | Modules/nismodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/nismodule.c b/Modules/nismodule.c index d99daeb..fcd64ff 100644 --- a/Modules/nismodule.c +++ b/Modules/nismodule.c @@ -106,7 +106,7 @@ nis_match (self, args) int err; PyObject *res; - if (!PyArg_Parse(args, "(s#s)", &key, &keylen, &map)) + if (!PyArg_Parse(args, "(t#s)", &key, &keylen, &map)) return NULL; if ((err = yp_get_default_domain(&domain)) != 0) return nis_error(err); |