2dbe1ce3f693
Fix invalid method call.
author | Chris Eldredge <celdredge@fool.com> |
---|---|
date | Fri, 25 Oct 2013 22:03:56 +0100 |
parents | 25433f9f53f3 |
children | 1758d8b993d0 |
branches/tags | (none) |
files | __init__.py |
Changes
--- 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