[FIX] maintenance contract: connect to real server

bzr revid: christophe@tinyerp.com-20090206135638-ur4vsnilc0of8w7u
This commit is contained in:
Christophe Simonis 2009-02-06 14:56:38 +01:00
parent b34a2bb191
commit 768283bde1
1 changed files with 4 additions and 4 deletions

View File

@ -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: