Oops, 'k' is the new format code for un unchecked 32 bit quantity,
not 'K'.
diff --git a/Mac/Modules/Nav.c b/Mac/Modules/Nav.c
index 81d00b2..a679df7 100644
--- a/Mac/Modules/Nav.c
+++ b/Mac/Modules/Nav.c
@@ -170,7 +170,7 @@
 			if ( !PyArg_Parse(value, "H", &opt->version) )
 				return 0;
 		} else if( strcmp(keystr, "dialogOptionFlags") == 0 ) {
-			if ( !PyArg_Parse(value, "K", &opt->dialogOptionFlags) )
+			if ( !PyArg_Parse(value, "k", &opt->dialogOptionFlags) )
 				return 0;
 		} else if( strcmp(keystr, "location") == 0 ) {
 			if ( !PyArg_Parse(value, "O&", PyMac_GetPoint, &opt->location) )
@@ -247,7 +247,7 @@
 	NavTranslationOptions howToTranslate;
 	OSErr err;
 
-	if (!PyArg_ParseTuple(args, "K", &howToTranslate))
+	if (!PyArg_ParseTuple(args, "k", &howToTranslate))
 		return NULL;
 	err = NavTranslateFile(&self->itself, howToTranslate);
 	if ( err ) {
@@ -268,7 +268,7 @@
 	NavTranslationOptions howToTranslate;
 	OSErr err;
 
-	if (!PyArg_ParseTuple(args, "K", &howToTranslate))
+	if (!PyArg_ParseTuple(args, "k", &howToTranslate))
 		return NULL;
 	err = NavCompleteSave(&self->itself, howToTranslate);
 	if ( err ) {
@@ -528,7 +528,7 @@
 	OSErr err;
 
 	if ( kw && PyObject_IsTrue(kw) ) {
-		if (!PyArg_ParseTuple(args, "K", &action))
+		if (!PyArg_ParseTuple(args, "k", &action))
 			return NULL;
 		dict = kw;
 	} else if (!PyArg_ParseTuple(args, "lO!", &action, &PyDict_Type, &dict))