Description: Fix print statements in example.py to work with python3
Author: Scott Kitterman <scott@kitterman.com>
Origin: vendor
Forwarded: yes
Last-Update: 2017-07-13

--- pyclamd-0.3.9.orig/example.py
+++ pyclamd-0.3.9/example.py
@@ -11,13 +11,13 @@ cd.ping()
 
 
 # print version
-print "Version : \n{0}\n".format(cd.version())
+print("Version : \n{0}\n".format(cd.version()))
 
 # force a db reload
 cd.reload()
 
 # print stats
-print "\n{0}\n".format(cd.stats())
+print("\n{0}\n".format(cd.stats()))
 
 # write test file with EICAR test string
 open('/tmp/EICAR','w').write(cd.EICAR())
@@ -26,9 +26,9 @@ open('/tmp/EICAR','w').write(cd.EICAR())
 open('/tmp/NO_EICAR','w').write('no virus in this file')
 
 # scan files
-print "\n{0}\n".format(cd.scan_file('/tmp/EICAR'))
-print "\n{0}\n".format(cd.scan_file('/tmp/NO_EICAR'))
+print("\n{0}\n".format(cd.scan_file('/tmp/EICAR')))
+print("\n{0}\n".format(cd.scan_file('/tmp/NO_EICAR')))
 
 # scan a stream
-print "\n{0}\n".format(cd.scan_stream(cd.EICAR()))
+print("\n{0}\n".format(cd.scan_stream(cd.EICAR())))
 
