gendoc: remove call to callable for py3k compatibility
authorMartin Geisler <mg@lazybytes.net>
Thu, 15 Jul 2010 14:02:17 +0200
changeset 11570 2d88369a27bf
parent 11569 f8576644a222
child 11572 324bad1dc230
gendoc: remove call to callable for py3k compatibility
doc/gendoc.py
--- a/doc/gendoc.py	Wed Jul 14 23:15:03 2010 -0300
+++ b/doc/gendoc.py	Thu Jul 15 14:02:17 2010 +0200
@@ -110,7 +110,7 @@
             ui.write(".. _%s:\n" % name)
         ui.write("\n")
         section(sec)
-        if callable(doc):
+        if hasattr(doc, '__call__'):
             doc = doc()
         ui.write(doc)
         ui.write("\n")