From 0a4198a732e870c12006ed5b03cf16c5cc8bde23 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 21 Feb 2015 16:12:09 +0100 Subject: Fix print function usage in examples too --- gbp/rpm/linkedlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gbp') 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) >>> str(list.delete(node1)) 'bar' -- cgit v1.2.3