Message ID | 1382019434-12377-1-git-send-email-dros@netapp.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 17/10/13 10:17, Weston Andros Adamson wrote: > Commit b703eabe4c4bc5c2d5fd9a07b6b995d67ea7e77a converted mountstats to using > python3's print() function, but this doesn't work in python2.x without > importing the print function from __future__. > > Signed-off-by: Weston Andros Adamson <dros@netapp.com> Committed... steved. > --- > tools/mountstats/mountstats.py | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py > index 3f5fea5..e46105d 100644 > --- a/tools/mountstats/mountstats.py > +++ b/tools/mountstats/mountstats.py > @@ -3,6 +3,8 @@ > """Parse /proc/self/mountstats and display it in human readable form > """ > > +from __future__ import print_function > + > __copyright__ = """ > Copyright (C) 2005, Chuck Lever <cel@netapp.com> > > -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py index 3f5fea5..e46105d 100644 --- a/tools/mountstats/mountstats.py +++ b/tools/mountstats/mountstats.py @@ -3,6 +3,8 @@ """Parse /proc/self/mountstats and display it in human readable form """ +from __future__ import print_function + __copyright__ = """ Copyright (C) 2005, Chuck Lever <cel@netapp.com>
Commit b703eabe4c4bc5c2d5fd9a07b6b995d67ea7e77a converted mountstats to using python3's print() function, but this doesn't work in python2.x without importing the print function from __future__. Signed-off-by: Weston Andros Adamson <dros@netapp.com> --- tools/mountstats/mountstats.py | 2 ++ 1 file changed, 2 insertions(+)