From: W. Trevor King Date: Fri, 13 Aug 2010 15:26:27 +0000 (-0400) Subject: Lowercase initial word in some log messages. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5966f031a6a17e7eb21a8a10b1a27f13e08e0cb1;p=hooke.git Lowercase initial word in some log messages. --- diff --git a/hooke/__init__.py b/hooke/__init__.py index 64f309a..30abbd1 100644 --- a/hooke/__init__.py +++ b/hooke/__init__.py @@ -30,7 +30,7 @@ try: from .license import LICENSE as __license__ except ImportError, e: import logging - logging.warn('Could not load LICENSE from hooke.license') + logging.warn('could not load LICENSE from hooke.license') __license__ = 'All rights reserved.' diff --git a/hooke/compat/minidom.py b/hooke/compat/minidom.py index dc20ebe..01d3be0 100644 --- a/hooke/compat/minidom.py +++ b/hooke/compat/minidom.py @@ -67,4 +67,4 @@ xml.dom.minidom.Element.writexml = instancemethod( writexml, None, xml.dom.minidom.Element) logging.warn( - 'Monkey patched xml.dom.minidom.Element and ._write_data for issue5752') + 'monkey patched xml.dom.minidom.Element and ._write_data for issue5752')