Skip to content

Commit

Permalink
Strip string
Browse files Browse the repository at this point in the history
  • Loading branch information
g105b authored Aug 21, 2018
1 parent 5f1d154 commit 35332c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions get-latest-counters.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

c1 = 0
with open(c1filename) as c1in:
c1 = c1in.read()
c1 = c1in.read().strip()

c2 = 0
with open(c2filename) as c2in:
c2 = c2in.read()
c2 = c2in.read().strip()

c2 = 0
with open(c2filename) as c2in:
c2 = c2in.read()
c3 = 0
with open(c3filename) as c3in:
c3 = c3in.read().strip()

print("C1:" + c1 + " C2:" + c2 + " C3:" + c3)

0 comments on commit 35332c1

Please sign in to comment.