Commit b9932709 authored by Aurel's avatar Aurel

explicitely convert port number to int


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@103 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 6f888771
......@@ -4,6 +4,6 @@ class NEOStorage(BaseConfig):
def open(self):
from NEOStorage import NEOStorage
return NEOStorage(master_addr = self.config.master_addr, master_port = self.config.master_port, name = self.config.name)
return NEOStorage(master_addr = self.config.master_addr, master_port = int(self.config.master_port), name = self.config.name)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment