← Back to team overview

gtg team mailing list archive

[Merge] lp:~nimit-svnit/gtg/bug-1037051 into lp:gtg

 

Nimit Shah has proposed merging lp:~nimit-svnit/gtg/bug-1037051 into lp:gtg.

Requested reviews:
  Gtg developers (gtg)
Related bugs:
  Bug #1037051 in Getting Things GNOME!: "Due date is not set for a new subtask"
  https://bugs.launchpad.net/gtg/+bug/1037051

For more details, see:
https://code.launchpad.net/~nimit-svnit/gtg/bug-1037051/+merge/119733

Fix for bug-1037051 (Due date is not set for a new subtask)
-- 
https://code.launchpad.net/~nimit-svnit/gtg/bug-1037051/+merge/119733
Your team Gtg developers is requested to review the proposed merge of lp:~nimit-svnit/gtg/bug-1037051 into lp:gtg.
=== modified file 'CHANGELOG'
--- CHANGELOG	2012-08-14 07:08:45 +0000
+++ CHANGELOG	2012-08-15 15:27:24 +0000
@@ -48,6 +48,7 @@
     * Fix for bug #1027844: Fuzzy date shouldn't become start date
     * Save backups into backup/ folder, creates backups of tags.xml closes #993920
     * Search filter is deleted on empty search if tag_pane is closed, by Stefan Handschuh, closes #996236
+    * Fix for bug-1037051 (Due date is not set for a new subtask), by Nimit Shah
 
 2012-02-13 Getting Things GNOME! 0.2.9
     * Big refractorization of code, now using liblarch

=== modified file 'GTG/core/task.py'
--- GTG/core/task.py	2012-08-12 23:52:39 +0000
+++ GTG/core/task.py	2012-08-15 15:27:24 +0000
@@ -429,6 +429,7 @@
         child = self.req.get_task(tid)
         if self.is_loaded() and child and child.can_be_deleted:
             child.set_start_date(self.get_start_date())
+            child.set_due_date(self.get_due_date())
             for t in self.get_tags():
                 child.add_tag(t.get_name())
         self.sync()


Follow ups