Skip to content

Commit f026b68

Browse files
authored
Merge pull request adafruit#1086 from jedgarpark/pulse-ox-log
added a missing comma for csv purposes
2 parents 57d5adf + d132f40 commit f026b68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Pulse_Oximeter_Logger/pulse_oximeter_logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
with open("/sd_card/log.txt", "a") as sdc:
115115
t = rtc.datetime
116116
sdc.write(
117-
"{} {}/{}/{} {}:{}:{} ".format(
117+
"{} {}/{}/{} {}:{}:{}, ".format(
118118
days[t.tm_wday],
119119
t.tm_mday,
120120
t.tm_mon,

0 commit comments

Comments
 (0)