diff options
Diffstat (limited to 'Mac/scripts/gensuitemodule.py')
-rw-r--r-- | Mac/scripts/gensuitemodule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/scripts/gensuitemodule.py b/Mac/scripts/gensuitemodule.py index b68def7..6549ed2 100644 --- a/Mac/scripts/gensuitemodule.py +++ b/Mac/scripts/gensuitemodule.py @@ -825,7 +825,7 @@ def identify(str): if not str: return "_empty_ae_name" rv = '' - ok = string.letters + '_' + ok = string.ascii_letters + '_' ok2 = ok + string.digits for c in str: if c in ok: |