From 4394515cd5632a7f110993ff75033d407d10861d Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Tue, 2 Apr 2013 13:47:32 -0600 Subject: BUG: Fix stray '.' in import statement. There was a stray period at the end of an import statement in `doc/cdoc/numpyfilter.py`. Looks like a cut and paste error that was fixed elsewhere but escaped there because the module isn't tested. A search shows that this was the only spot in which the error was still present. --- doc/cdoc/numpyfilter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/cdoc') diff --git a/doc/cdoc/numpyfilter.py b/doc/cdoc/numpyfilter.py index 7137df2d2..d5021f92a 100755 --- a/doc/cdoc/numpyfilter.py +++ b/doc/cdoc/numpyfilter.py @@ -17,7 +17,7 @@ import optparse if sys.version_info[0] >= 3: import pickle else: - import cPickle as pickle. + import cPickle as pickle CACHE_FILE = 'build/rst-cache.pck' @@ -47,7 +47,7 @@ def filter_comment(text): if text.startswith('UFUNC_API'): text = text[9:].strip() - html = render_html(text) + html = render_html(text) return html def process_match(m, cache=None): -- cgit v1.2.1