changeset 1210:27f2ec705332

Revert silly TypeError change
author mpm@selenic.com
date Wed, 07 Sep 2005 20:05:22 -0700
parents 920682a532df
children 1c455338ad95
files mercurial/hgweb.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb.py	Wed Sep 07 19:37:11 2005 -0700
+++ b/mercurial/hgweb.py	Wed Sep 07 20:05:22 2005 -0700
@@ -74,8 +74,6 @@
                     self.write(part)
             else:
                 try:
-                    self.out.write(thing)
-                except TypeError:
                     self.out.write(str(thing))
                 except socket.error, inst:
                     if inst[0] != errno.ECONNRESET: