diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:45:13 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:45:13 (GMT) |
commit | 6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5 (patch) | |
tree | 68fa306974cc05de44d5c5c07ba62a739db3aa72 /Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py | |
parent | dfebe90c4c04a7a36e4542907118ddce97085868 (diff) | |
download | cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.zip cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.gz cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.bz2 |
Fixed macroman<->latin1 conversion. Some chars don't
exist in latin1, but at least the roundtrip results in the
same macroman characters.
Diffstat (limited to 'Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py')
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py b/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py index ed4ddda..26df454 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py @@ -212,7 +212,7 @@ class folder(aetools.ComponentItem): folders = folder class desktop_2d_object(aetools.ComponentItem): - """desktop-object - Desktop-object is the class of the ³desktop² object """ + """desktop-object - Desktop-object is the class of the –desktop” object """ want = 'cdsk' class startup_disk(aetools.NProperty): """startup disk - the startup disk """ @@ -242,7 +242,7 @@ class trash(aetools.NProperty): # element 'dsut' as ['indx', 'name'] class trash_2d_object(aetools.ComponentItem): - """trash-object - Trash-object is the class of the ³trash² object """ + """trash-object - Trash-object is the class of the –trash” object """ want = 'ctrs' class warns_before_emptying(aetools.NProperty): """warns before emptying - Display a dialog when emptying the trash? """ |