diff --git a/python/opencv_client.py b/python/opencv_client.py
index 18026844db75fb47de789e4a0242a1617b071c06..65715391ae453fa8fdef9d82eda333764d149d0a 100644
--- a/python/opencv_client.py
+++ b/python/opencv_client.py
@@ -9,7 +9,7 @@ height = client.dims[0]
 width = client.dims[1]
 deep = client.dims[2]
 
-print(height,"x",width,"x",deep, cleint.type, client.format)
+print(height,"x",width,"x",deep, client.type, client.format)
 
 #We create an numpy array (equivalent to cv:Mat in C++ ) associated with the data of the client
 client_array = numpy.ndarray([height, width, deep], dtype=numpy.uint8, buffer=client.data, offset=0, strides=None, order='C')