From b558a0401b792354197250cb8a3c83be5a1f447e Mon Sep 17 00:00:00 2001 From: Guillaume Chazarain Date: Mon, 3 Sep 2012 22:46:38 +0200 Subject: [PATCH] Restore compatibility with python2 --- iotop/data.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iotop/data.py b/iotop/data.py index a4954b3..84ac409 100644 --- a/iotop/data.py +++ b/iotop/data.py @@ -16,6 +16,9 @@ # # Copyright (c) 2007 Guillaume Chazarain +# Allow printing with same syntax in Python 2/3 +from __future__ import print_function + import errno import os import pprint -- 2.11.4.GIT