From 768283bde159406c258f4a90c62eb4e83d97f09f Mon Sep 17 00:00:00 2001
From: Christophe Simonis <christophe@tinyerp.com>
Date: Fri, 6 Feb 2009 14:56:38 +0100
Subject: [PATCH] [FIX] maintenance contract: connect to real server

bzr revid: christophe@tinyerp.com-20090206135638-ur4vsnilc0of8w7u
---
 bin/tools/maintenance.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/tools/maintenance.py b/bin/tools/maintenance.py
index e23e9c8f7adc..1ba03d0b272e 100644
--- a/bin/tools/maintenance.py
+++ b/bin/tools/maintenance.py
@@ -26,10 +26,10 @@ class RemoteContractException(Exception): pass
 
 class remote_contract(object):
     def __init__(self, contract_id, contract_password, modules=None):
-        self.__server = 'http://192.168.0.127:8072/xmlrpc/'
-        self.__db = "maintenance"
-        self.__password = "admin"
-        self.__login = "admin"
+        self.__server = 'http://terp.tinyerp.com:8069/xmlrpc/'
+        self.__db = "tiny"
+        self.__password = "maintenance"
+        self.__login = "maintenance"
         
         rpc = xmlrpclib.ServerProxy(self.__server + 'common')
         try:
-- 
GitLab