Mercurial > public > hgext.markdown
changeset 41:2dbe1ce3f693 default tip
Fix invalid method call.
author | Chris Eldredge <celdredge@fool.com> |
---|---|
date | Fri, 25 Oct 2013 22:03:56 +0100 |
parents | 25433f9f53f3 |
children | |
files | __init__.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/__init__.py Thu Oct 10 10:59:07 2013 +0700 +++ b/__init__.py Fri Oct 25 22:03:56 2013 +0100 @@ -205,5 +205,5 @@ try: from markdown import Markdown except ImportError: - ui.error("Unable to locate markdown in path %s" % sys.path) + ui.warn("Unable to locate markdown in path %s\n" % sys.path) global Markdown