diff options
Diffstat (limited to 'tools/mountstats/mountstats.py')
-rw-r--r-- | tools/mountstats/mountstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py index e46105d..1fb3e2f 100644 --- a/tools/mountstats/mountstats.py +++ b/tools/mountstats/mountstats.py @@ -371,7 +371,7 @@ def parse_stats_file(filename): ms_dict = dict() key = '' - f = file(filename) + f = open(filename) for line in f.readlines(): words = line.split() if len(words) == 0: |