From 9e55df40ce51c7afcf750ed6e352d945ae5cc71d Mon Sep 17 00:00:00 2001 From: Christian Jacobs Date: Fri, 4 Oct 2013 22:58:42 +0100 Subject: [PATCH] Remove an old print statement. --- pyqso/record_dialog.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyqso/record_dialog.py b/pyqso/record_dialog.py index a494d9f..8a647a4 100644 --- a/pyqso/record_dialog.py +++ b/pyqso/record_dialog.py @@ -471,7 +471,6 @@ def get_date(self): logging.debug("Retrieving the date from the calendar widget...") (year, month, day) = self.calendar.get_date() # If necessary, add on leading zeros so the YYYYMMDD format is followed. - print month, day if(month + 1 < 10): month = "0" + str(month + 1) # Note: the months start from an index of 0 when retrieved from the calendar widget. else: