--- a/Tasks/TaskPropertiesDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Tasks/TaskPropertiesDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -40,8 +40,9 @@ if task is not None: self.summaryEdit.setText(task.summary) self.descriptionEdit.setText(task.description) - self.creationLabel.setText(time.strftime("%Y-%m-%d, %H:%M:%S", - time.localtime(task.created))) + self.creationLabel.setText( + time.strftime("%Y-%m-%d, %H:%M:%S", + time.localtime(task.created))) self.priorityCombo.setCurrentIndex(task.priority) self.projectCheckBox.setChecked(task._isProjectTask) self.completedCheckBox.setChecked(task.completed) @@ -65,8 +66,11 @@ Public method to retrieve the dialogs data. @return tuple of description, priority, completion flag, - project flag and long text (string, string, boolean, boolean, string) + project flag and long text (string, string, boolean, + boolean, string) """ - return (self.summaryEdit.text(), self.priorityCombo.currentIndex(), - self.completedCheckBox.isChecked(), self.projectCheckBox.isChecked(), + return (self.summaryEdit.text(), + self.priorityCombo.currentIndex(), + self.completedCheckBox.isChecked(), + self.projectCheckBox.isChecked(), self.descriptionEdit.toPlainText())