Return a handle in stead of a resource.
diff --git a/Mac/Lib/macfsn.py b/Mac/Lib/macfsn.py
index c78459d..f7b6b2e 100644
--- a/Mac/Lib/macfsn.py
+++ b/Mac/Lib/macfsn.py
@@ -17,7 +17,7 @@
 	data = 'Pyth' + struct.pack("hh", 0, len(typelist))
 	for type in typelist:
 		data = data+type
-	return Res.Resource(data)
+	return Res.Handle(data)
 	
 def _StandardGetFile(*typelist):
 	return apply(_PromptGetFile, (None,)+typelist)