summaryrefslogtreecommitdiff
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-02-21 16:12:09 +0100
committerGuido Günther <agx@sigxcpu.org>2015-03-27 12:10:55 +0100
commit0a4198a732e870c12006ed5b03cf16c5cc8bde23 (patch)
tree7ca855ad0ec2488f5f0bfe6392691afd19bc308a /gbp
parenta33276d8da726d7e60908884cb404e56ec907064 (diff)
Fix print function usage in examples too
Diffstat (limited to 'gbp')
-rw-r--r--gbp/rpm/linkedlist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/rpm/linkedlist.py b/gbp/rpm/linkedlist.py
index 74d897b..bc1df4c 100644
--- a/gbp/rpm/linkedlist.py
+++ b/gbp/rpm/linkedlist.py
@@ -193,7 +193,7 @@ class LinkedList(collections.Iterable):
'foo'
>>> [str(data) for data in list]
['foo', 'bar']
- >>> print "%s" % node3
+ >>> print("%s" % node3)
<BLANKLINE>
>>> str(list.delete(node1))
'bar'