diff options
author | 1997-10-08 15:32:46 +0000 | |
---|---|---|
committer | 1997-10-08 15:32:46 +0000 | |
commit | 213649023cfb7a5d3a9141bc10f501513f7bb42d (patch) | |
tree | 701fa6c80aa2ab496458c7689938f99fc152bc88 | |
parent | Upped version to 1.5a4, changed sys.path initialization to match new (diff) | |
download | cpython-213649023cfb7a5d3a9141bc10f501513f7bb42d.tar.gz cpython-213649023cfb7a5d3a9141bc10f501513f7bb42d.tar.bz2 cpython-213649023cfb7a5d3a9141bc10f501513f7bb42d.zip |
Bug fix for fast module location
-rw-r--r-- | Mac/Python/macglue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 0adbce10366..4d0fb1f77e7 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -895,7 +895,7 @@ PyMac_FindModuleExtension(char *buf, int *lenp, char *module) #if 0 strcpy(buf+*lenp+modnamelen, fdp->suffix); #else - strcpy(buf+*lenp+modnamelen, fdp->suffix); + strcpy(buf+*lenp, fdp->suffix); #endif *lenp = strlen(buf); return fdp; |