Skip to content

Commit fe6cba2

Browse files
authored
Merge pull request #309 from df7cb/telemetry-python3
scripts/telemetry-toolkit/telem-volts.py: Port to python3
2 parents 8ac14f8 + a30f909 commit fe6cba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/telemetry-toolkit/telem-volts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/python3
22

33
# Part of Dire Wolf APRS Telemetry Toolkit, WB2OSZ, 2015
44

@@ -33,4 +33,4 @@
3333
# (multiply by expected value, divide by uncalibrated result.)
3434
#volts = volts * 4.98 / 4.889
3535

36-
print "%.3f" % (volts)
36+
print("%.3f" % (volts))

0 commit comments

Comments
 (0)