diff --git a/examples/python/ex_access.py b/examples/python/ex_access.py index e7acb86b6b2..2940ac63625 100755 --- a/examples/python/ex_access.py +++ b/examples/python/ex_access.py @@ -50,6 +50,6 @@ cursor.insert() # Iterate through the records cursor.reset() for key, value in cursor: - print('Got record: %s : %s' % (key, value)) + print('Got record: %s : %s' % (key, value)) conn.close()