[tryton-debian-vcs] tryton-modules-analytic-account branch upstream-2.6 updated. upstream/2.6.0-1-gbe3c2d8
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:48:08 UTC 2013
The following commit has been merged in the upstream-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-analytic-account.git;a=commitdiff;h=upstream/2.6.0-1-gbe3c2d8
commit be3c2d83be76ab7a48b88fe3c5634136c977bb97
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:24:02 2013 +0100
Adding upstream version 2.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index fa16e90..52c49ed 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.6.1 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.6.0 - 2012-10-22
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index e25d66b..921bc32 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: trytond_analytic_account
-Version: 2.6.0
+Version: 2.6.1
Summary: Tryton module for analytic accounting
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/account.py b/account.py
index 7572440..fbddff3 100644
--- a/account.py
+++ b/account.py
@@ -241,11 +241,11 @@ class Account(ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
- accounts = cls.search([('code',) + clause[1:]], limit=1)
+ accounts = cls.search([('code',) + tuple(clause[1:])], limit=1)
if accounts:
- return [('code',) + clause[1:]]
+ return [('code',) + tuple(clause[1:])]
else:
- return [(cls._rec_name,) + clause[1:]]
+ return [(cls._rec_name,) + tuple(clause[1:])]
@classmethod
def convert_view(cls, tree):
diff --git a/tryton.cfg b/tryton.cfg
index 164d7c2..a1bd271 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.6.0
+version=2.6.1
depends:
account
company
diff --git a/trytond_analytic_account.egg-info/PKG-INFO b/trytond_analytic_account.egg-info/PKG-INFO
index 395d968..3f30ce7 100644
--- a/trytond_analytic_account.egg-info/PKG-INFO
+++ b/trytond_analytic_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: trytond-analytic-account
-Version: 2.6.0
+Version: 2.6.1
Summary: Tryton module for analytic accounting
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-analytic-account
More information about the tryton-debian-vcs
mailing list