From 1e2dfe3b2fa129da6a9d6d6407b4ebb2bca84dc2 Mon Sep 17 00:00:00 2001
From: Amir Mohammadi <183.amir@gmail.com>
Date: Sun, 25 Dec 2016 16:54:20 +0100
Subject: [PATCH] [doc] fix print command for python 3

---
 doc/guide.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guide.rst b/doc/guide.rst
index 2409d10..950d43b 100644
--- a/doc/guide.rst
+++ b/doc/guide.rst
@@ -66,7 +66,7 @@ The code below shall detect most frontal faces in a provided image:
    >>> bounding_box, quality = bob.ip.facedetect.detect_single_face(lena)
    >>> y, x = bounding_box.topleft
    >>> height, width = bounding_box.size
-   >>> print(y, x, height, width)
+   >>> print((y, x, height, width))
    (...)
 
 .. note::
-- 
GitLab