[tryton-debian-vcs] tryton-modules-project-plan branch debian updated. debian/3.6.0-1-3-g443a0ba
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun May 24 12:19:32 UTC 2015
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project-plan.git;a=commitdiff;h=debian/3.6.0-1-3-g443a0ba
commit 443a0ba325943893d07017ae720ed144a83e3b7a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat May 23 21:15:48 2015 +0200
Releasing debian version 3.6.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 7ca325c..10515f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-project-plan (3.6.1-1) unstable; urgency=medium
+
+ * Updating year of debian copyright.
+ * Merging upstream version 3.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 23 May 2015 21:15:48 +0200
+
tryton-modules-project-plan (3.6.0-1) unstable; urgency=medium
* Wrapping and sorting control files (wrap-and-sort -bts).
commit 8516c3b60969a458ef75dc32a4a68e1aeb1e0aae
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat May 23 21:15:47 2015 +0200
Merging upstream version 3.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index de0c3b1..41a2017 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2015-05-22
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
* Add support for PyPy
diff --git a/PKG-INFO b/PKG-INFO
index 475fa64..d658e62 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_project_plan
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module to add planning capabilities on projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index b373e9d..b42a669 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.0
+version=3.6.1
depends:
ir
company
diff --git a/trytond_project_plan.egg-info/PKG-INFO b/trytond_project_plan.egg-info/PKG-INFO
index 185d3f0..0880806 100644
--- a/trytond_project_plan.egg-info/PKG-INFO
+++ b/trytond_project_plan.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-project-plan
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module to add planning capabilities on projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/work.py b/work.py
index 7656ecc..4837206 100644
--- a/work.py
+++ b/work.py
@@ -110,8 +110,9 @@ class Work:
leafs.add(work.id)
total_allocation = 0
- if not work.allocations or not work.effort_duration:
- durations[work.id] = work.effort_duration
+ if not work.allocations:
+ durations[work.id] = (work.effort_duration
+ or datetime.timedelta())
continue
for allocation in work.allocations:
total_allocation += allocation.percentage
--
tryton-modules-project-plan
More information about the tryton-debian-vcs
mailing list