Whitespace normalization, via reindent.py.
diff --git a/Lib/plat-mac/icopen.py b/Lib/plat-mac/icopen.py
index 99e866e..eea6083 100644
--- a/Lib/plat-mac/icopen.py
+++ b/Lib/plat-mac/icopen.py
@@ -42,18 +42,18 @@
 _builtin_open = globals().get('_builtin_open', __builtin__.open)
 
 def _open_with_typer(*args):
-        file = _builtin_open(*args)
-        filename = args[0]
-        mode = 'r'
-        if args[1:]:
-                mode = args[1]
-        if mode[0] == 'w':
-                from ic import error, settypecreator
-                try:
-                        settypecreator(filename)
-                except error:
-                        pass
-        return file
+    file = _builtin_open(*args)
+    filename = args[0]
+    mode = 'r'
+    if args[1:]:
+        mode = args[1]
+    if mode[0] == 'w':
+        from ic import error, settypecreator
+        try:
+            settypecreator(filename)
+        except error:
+            pass
+    return file
 
 __builtin__.open = _open_with_typer