From 77644ea0edbccadcd532cd932996a416105f38d5 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 28 Dec 2014 15:42:04 -0500 Subject: [PATCH] lego missed a spot in #91 --- docs/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.rst b/docs/usage.rst index a1adfce..ee667fd 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -7,7 +7,7 @@ Normal usage is rather straightforward (where ``text`` is page text):: >>> wikicode = mwparserfromhell.parse(text) ``wikicode`` is a :class:`mwparserfromhell.Wikicode <.Wikicode>` object, which -acts like an ordinary ``unicode`` object (or ``str`` in Python 3) with some +acts like an ordinary ``str`` object (or ``unicode`` in Python 2) with some extra methods. For example:: >>> text = "I has a template! {{foo|bar|baz|eggs=spam}} See it?"