# HG changeset patch # User Simon Cross # Date 1353447670 -7200 # Node ID 1b720cf4d730e1a490b56bf99b7892203adff281 # Parent c296d10bd5f981ac22676d3889fa89c9da1eef15 Make port an int. diff -r c296d10bd5f9 -r 1b720cf4d730 mamba/forest.py --- a/mamba/forest.py Tue Nov 20 23:38:53 2012 +0200 +++ b/mamba/forest.py Tue Nov 20 23:41:10 2012 +0200 @@ -178,7 +178,7 @@ irker = self.SubConfig() irker.project = conf['project'] irker.host = conf.get('host', 'localhost') - irker.port = conf.get('port', IRKER_PORT) + irker.port = int(conf.get('port', IRKER_PORT)) irker.channels = conf['channels'] return irker