[tryton-debian-vcs] tryton-modules-account branch debian-wheezy-2.6 updated. debian/2.6.11-1-2-gaab476a

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Sun May 24 12:15:55 UTC 2015


The following commit has been merged in the debian-wheezy-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account.git;a=commitdiff;h=debian/2.6.11-1-2-gaab476a

commit aab476a78583fffa62e9027858f99747b6cb9b39
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat May 23 21:01:40 2015 +0200

    Releasing debian version 2.6.12-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 2cdaad7..7698bb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-account (2.6.12-1) unstable; urgency=medium
+
+  * Merging upstream version 2.6.12.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Sat, 23 May 2015 21:01:40 +0200
+
 tryton-modules-account (2.6.11-1) unstable; urgency=medium
 
   * Merging upstream version 2.6.11.
commit 8086240665c78527925ca31c271422a3937096cd
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat May 23 21:01:39 2015 +0200

    Merging upstream version 2.6.12.

diff --git a/CHANGELOG b/CHANGELOG
index ef2a321..026b3b1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.6.12 - 2015-05-22
+* Bug fixes (see mercurial logs for details)
+
 Version 2.6.11 - 2015-03-02
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index ae47ee9..317baff 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_account
-Version: 2.6.11
+Version: 2.6.12
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/account.py b/account.py
index a76c030..c077ba3 100644
--- a/account.py
+++ b/account.py
@@ -1150,7 +1150,7 @@ class GeneralLedger(Report):
                     ('fiscalyear', '=', data['fiscalyear']),
                     ('end_date', '<=', start_period.start_date),
                     ])
-            start_period_ids = [p.id for p in start_periods]
+            start_period_ids += [p.id for p in start_periods]
 
         with Transaction().set_context(
                 fiscalyear=data['fiscalyear'],
diff --git a/move.py b/move.py
index f2436d5..8f43657 100644
--- a/move.py
+++ b/move.py
@@ -1288,7 +1288,7 @@ class Line(ModelSQL, ModelView):
                 cls.raise_user_error('already_reconciled',
                         error_args=(line.move.number, line.id,))
 
-        lines = lines[:]
+        lines = list(lines)
         if journal and account:
             if not date:
                 date = Date.today()
diff --git a/tryton.cfg b/tryton.cfg
index 258092a..fb5299e 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.6.11
+version=2.6.12
 depends:
     company
     currency
diff --git a/trytond_account.egg-info/PKG-INFO b/trytond_account.egg-info/PKG-INFO
index 460cf36..1d26137 100644
--- a/trytond_account.egg-info/PKG-INFO
+++ b/trytond_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-account
-Version: 2.6.11
+Version: 2.6.12
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-account



More information about the tryton-debian-vcs mailing list