From 74b4b82394dc50b1386d503d6b16d0a7268cf9ca Mon Sep 17 00:00:00 2001 From: Sylvain Date: Tue, 20 May 2008 09:22:03 +0200 Subject: fix mysql create database command --- ureports/__init__.py | 1 + ureports/text_writer.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'ureports') diff --git a/ureports/__init__.py b/ureports/__init__.py index 96b5517..bb19ad5 100644 --- a/ureports/__init__.py +++ b/ureports/__init__.py @@ -27,6 +27,7 @@ from StringIO import StringIO as UStringIO from logilab.common.textutils import linesep + def get_nodes(node, klass): """return an iterator on all children node of the given klass""" for child in node.children: diff --git a/ureports/text_writer.py b/ureports/text_writer.py index f093f5f..6e03f6b 100644 --- a/ureports/text_writer.py +++ b/ureports/text_writer.py @@ -15,9 +15,9 @@ # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Text formatting drivers for ureports""" - -from logilab.common.ureports import BaseWriter from logilab.common.textutils import linesep +from logilab.common.ureports import BaseWriter + TITLE_UNDERLINES = ['', '=', '-', '`', '.', '~', '^'] BULLETS = ['*', '-'] -- cgit v1.2.1