Skip to content

Commit 9e55df4

Browse files
author
Christian Jacobs
committed
Remove an old print statement.
1 parent 62f9527 commit 9e55df4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pyqso/record_dialog.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,6 @@ def get_date(self):
471471
logging.debug("Retrieving the date from the calendar widget...")
472472
(year, month, day) = self.calendar.get_date()
473473
# If necessary, add on leading zeros so the YYYYMMDD format is followed.
474-
print month, day
475474
if(month + 1 < 10):
476475
month = "0" + str(month + 1) # Note: the months start from an index of 0 when retrieved from the calendar widget.
477476
else:

0 commit comments

Comments
 (0)