[FIX] account: installer: call right method

bzr revid: chs@openerp.com-20130125121127-j7i3rwskqojyp8nm
This commit is contained in:
Christophe Simonis 2013-01-25 13:11:27 +01:00
parent 4c89124778
commit a78531df43
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class account_installer(osv.osv_memory):
# try get the list on apps server
try:
apps_server = self.pool.get('ir.config_parameter').get_value(cr, uid, 'apps.server', 'https://apps.openerp.com')
apps_server = self.pool.get('ir.config_parameter').get_param(cr, uid, 'apps.server', 'https://apps.openerp.com')
up = urlparse.urlparse(apps_server)
url = '{0.scheme}://{0.netloc}/apps/charts?serie={1}'.format(up, serie)