summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Mac/Python/macmain.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c
index a4f7dc4..c703cdc 100644
--- a/Mac/Python/macmain.c
+++ b/Mac/Python/macmain.c
@@ -549,6 +549,7 @@ PyMac_InitApplication(void)
{
int argc;
char **argv;
+ OSType filetype;
static char scriptpath[1024];
char *script = NULL;
@@ -573,7 +574,8 @@ PyMac_InitApplication(void)
chdir(curwd);
}
/* Check that the first argument is a text file */
- if ( PyMac_getfiletype(argv[1]) != 'TEXT' ) {
+ filetype = PyMac_getfiletype(argv[1]);
+ if ( filetype != 'TEXT' && filetype != 0 ) {
Alert(NOTASCRIPT_ID, NULL);
exit(0);
}