diff options
Diffstat (limited to 'Mac/Modules/mlte/mltesupport.py')
-rw-r--r-- | Mac/Modules/mlte/mltesupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/mlte/mltesupport.py b/Mac/Modules/mlte/mltesupport.py index a1152be..e4418cb 100644 --- a/Mac/Modules/mlte/mltesupport.py +++ b/Mac/Modules/mlte/mltesupport.py @@ -8,10 +8,10 @@ import string # Declarations that change for each manager -MODNAME = 'Mlte' # The name of the module +MODNAME = '_Mlte' # The name of the module # The following is *usually* unchanged but may still require tuning -MODPREFIX = MODNAME # The prefix for module-wide routines +MODPREFIX = 'Mlte' # The prefix for module-wide routines INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner OUTPUTFILE = MODNAME + "module.c" # The file generated by this program |