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/Finder_items.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/Finder_items.py')
| -rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Finder_items.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py b/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py index cc87f7f..742c51a 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py @@ -79,7 +79,7 @@ class Finder_items_Events: def empty(self, _object=None, _attributes={}, **_arguments): """empty: Empty the trash - Required argument: ³empty² and ³empty trash² both do the same thing + Required argument: –empty” and –empty trash” both do the same thing Keyword argument _attributes: AppleEvent attribute dictionary """ _code = 'fndr' @@ -227,7 +227,7 @@ class description(aetools.NProperty): which = 'dscr' want = 'itxt' class comment(aetools.NProperty): - """comment - the comment of the item, displayed in the ³Get Info² window """ + """comment - the comment of the item, displayed in the –Get Info” window """ which = 'comt' want = 'itxt' class size(aetools.NProperty): |
