Skip to content

Commit

Permalink
Remove an old print statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Jacobs committed Oct 4, 2013
1 parent 62f9527 commit 9e55df4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pyqso/record_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9e55df4

Please sign in to comment.