diff options
author | Robert Tari <robert@tari.in> | 2020-09-10 01:08:01 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2020-09-10 01:08:01 +0200 |
commit | c310b42b7e3f51cf55598ecac1811d1d4967fec9 (patch) | |
tree | 9750680d689e065c4382bb803024b78e4982bb9f | |
parent | 6b0ca37594f5c3c949a3b4bd287afc283011485c (diff) | |
download | libayatana-indicator-c310b42b7e3f51cf55598ecac1811d1d4967fec9.tar.gz libayatana-indicator-c310b42b7e3f51cf55598ecac1811d1d4967fec9.tar.bz2 libayatana-indicator-c310b42b7e3f51cf55598ecac1811d1d4967fec9.zip |
trim-lcov.py: Port trim-lcov to Python 3
Fixes #6
-rwxr-xr-x | trim-lcov.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/trim-lcov.py b/trim-lcov.py index 8465e95..767ab37 100755 --- a/trim-lcov.py +++ b/trim-lcov.py @@ -1,4 +1,5 @@ -#!/usr/bin/python +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- # Copyright 2013 Canonical Ltd. # @@ -54,7 +55,10 @@ for line in sys.stdin: # Source file if keyword == 'SF': - source = file(rest).readlines() + + with open(rest, 'r') as pFile: + + source = pFile.readlines() # Branch coverage data elif keyword == 'BRDA': @@ -66,4 +70,4 @@ for line in sys.stdin: if check_suppress(line_suppress, source, rest): continue - print line + print(line) |