Use the new, now preferred, form of referring to object specifiers (through

the object, not the module).
This commit is contained in:
Jack Jansen 2003-06-13 14:32:49 +00:00
parent 8475d0256a
commit 880be6f1cf
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ Python:</p>
import Finder
f = Finder.Finder()
print f.get(Finder.window(1).name)
print f.get(f.window(1).name)
</pre></tt></blockquote>
<p>is identical to the following piece of AppleScript:</p>