This is 0.20
diff --git a/setup.py b/setup.py
index 633f63f..e2effab 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from setuptools import setup, Extension
 from distutils.command.build_ext import build_ext
 from distutils.errors import CCompilerError, DistutilsExecError, \
-    DistutilsPlatformError
+     DistutilsPlatformError
 
 
 # fail safe compilation shamelessly stolen from the simplejson
@@ -24,9 +24,9 @@
 
 ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
 if sys.platform == 'win32' and sys.version_info > (2, 6):
-   # 2.6's distutils.msvc9compiler can raise an IOError when failing to
-   # find the compiler
-   ext_errors += (IOError,)
+    # 2.6's distutils.msvc9compiler can raise an IOError when failing to
+    # find the compiler
+    ext_errors += (IOError,)
 
 
 class BuildFailed(Exception):
@@ -66,7 +66,7 @@
     ext_modules = [ext] if with_binary else []
     setup(
         name='MarkupSafe',
-        version='0.19',
+        version='0.20',
         url='http://github.com/mitsuhiko/markupsafe',
         license='BSD',
         author='Armin Ronacher',