aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xagenda.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/agenda.py b/agenda.py
index dde1d24..7a8ae39 100755
--- a/agenda.py
+++ b/agenda.py
@@ -71,7 +71,7 @@ def show_event(event,thisdate):
response = ""
all_dtstart_dt = []
all_dtstart_str_dt = []
- print(event.data)
+ #print(event.data)
#for i in event.icalendar_component:
# print(f"{i} IS {event.icalendar_component[i]}")
dtstart = event.icalendar_component["DTSTART"]
bgstack15