From 5966f031a6a17e7eb21a8a10b1a27f13e08e0cb1 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 13 Aug 2010 11:26:27 -0400 Subject: [PATCH] Lowercase initial word in some log messages. --- hooke/__init__.py | 2 +- hooke/compat/minidom.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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') -- 2.26.2