2013-10-17 14:17:18

by Weston Andros Adamson

[permalink] [raw]
Subject: [PATCH] mountstats: fix python2.x support

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 <[email protected]>
---
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 <[email protected]>

--
1.7.12.4 (Apple Git-37)



2013-10-21 14:07:29

by Steve Dickson

[permalink] [raw]
Subject: Re: [PATCH] mountstats: fix python2.x support



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 <[email protected]>
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 <[email protected]>
>
>