Use Channel class when creating Server

This commit is contained in:
nemunaire 2015-10-29 12:35:43 +01:00
commit e4d67ec345
2 changed files with 5 additions and 5 deletions

View file

@ -132,7 +132,7 @@ class ServerConfig:
self.caps += parent.caps
return factory(self.uri, **self.args)
return factory(self.uri, caps=self.caps, channels=self.channels, **self.args)
class IncludeConfig: