# HG changeset patch # User Chris Eldredge # Date 1382735036 -3600 # Node ID 2dbe1ce3f693a4ad02e464425c0d8542f1b4059b # Parent 25433f9f53f37fc3e5b9f7391264ce636391d244 Fix invalid method call. diff -r 25433f9f53f3 -r 2dbe1ce3f693 __init__.py --- 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