[tryton-debian-vcs] tryton-modules-stock branch upstream-2.2 updated. upstream/2.2.8-1-ga8b507c
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Dec 12 12:57:48 UTC 2013
The following commit has been merged in the upstream-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock.git;a=commitdiff;h=upstream/2.2.8-1-ga8b507c
commit a8b507c9778e20a21f18971b72edce0b79309767
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 12 13:35:24 2013 +0100
Adding upstream version 2.2.9.
diff --git a/CHANGELOG b/CHANGELOG
index 7638747..2aaff37 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.9 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.2.8 - 2013-07-22
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 123e0a3..b4da5a0 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_stock
-Version: 2.2.8
+Version: 2.2.9
Summary: Stock Management and Inventory Control with:
- Location definition
- Stock move
diff --git a/__tryton__.py b/__tryton__.py
index 8ccf91b..60bd758 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -8,7 +8,7 @@
'name_es_ES': 'Gestión de existencias',
'name_fr_FR': 'Gestion des stocks',
'name_ru_RU': 'Управление складами',
- 'version': '2.2.8',
+ 'version': '2.2.9',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/move.py b/move.py
index 735eec3..71904f7 100644
--- a/move.py
+++ b/move.py
@@ -403,7 +403,7 @@ class Move(ModelSQL, ModelView):
return res
def search_rec_name(self, name, clause):
- return [('product',) + clause[1:]]
+ return [('product',) + tuple(clause[1:])]
def search(self, args, offset=0, limit=None, order=None, count=False,
query_string=False):
diff --git a/trytond_stock.egg-info/PKG-INFO b/trytond_stock.egg-info/PKG-INFO
index bbfc863..3dcba88 100644
--- a/trytond_stock.egg-info/PKG-INFO
+++ b/trytond_stock.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-stock
-Version: 2.2.8
+Version: 2.2.9
Summary: Stock Management and Inventory Control with:
- Location definition
- Stock move
--
tryton-modules-stock
More information about the tryton-debian-vcs
mailing list