hgext/convert/common.py
changeset 4755 47091c8d028e
parent 4753 07efcce17d28
child 4806 15a3cbfc6568
--- a/hgext/convert/common.py
+++ b/hgext/convert/common.py
@@ -8,6 +8,8 @@ class commit(object):
             if not x in parts:
                 raise util.Abort("commit missing field %s" % x)
         self.__dict__.update(parts)
+        if not self.desc or self.desc.isspace():
+            self.desc = '*** empty log message ***'
 
 class converter_source(object):
     """Conversion source interface"""