summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2014-09-02 10:25:21 -0700
committerJeff Quast <contact@jeffquast.com>2014-09-02 10:25:21 -0700
commitdfc1cb42a5e4082df7aa0b298248b52888f37d59 (patch)
tree225a13878480bd4daeb9b54f8ef8eb84621ed686 /README.rst
parent021e51f2b372c535227ff99bb285f22b56bdb74e (diff)
downloadblessings-dfc1cb42a5e4082df7aa0b298248b52888f37d59.tar.gz
use python2 and 3 compatible print example
per @signalpillar
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index e159f91..2f09ce1 100644
--- a/README.rst
+++ b/README.rst
@@ -90,7 +90,7 @@ The same program with *Blessed* is simply::
term = Terminal()
with term.location(0, term.height - 1):
- print('This is', term.underline('pretty!'))
+ print('This is' + term.underline('pretty!'))
Screenshots