diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-03 19:04:05 -0200 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-03 19:04:05 -0200 |
commit | 0bf689fb912fad2d20a08dd358f4641c10993875 (patch) | |
tree | 4396afc2a3c349ddb0406bcba2d7b7a2e4b60bd6 /service | |
parent | 40dc0dccb22223d823ae2c3678a4eedaaeeace72 (diff) |
fixing pep8
Diffstat (limited to 'service')
-rw-r--r-- | service/pixelated/config/app_factory.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/pixelated/config/app_factory.py b/service/pixelated/config/app_factory.py index a1fd92dd..8281ea97 100644 --- a/service/pixelated/config/app_factory.py +++ b/service/pixelated/config/app_factory.py @@ -148,6 +148,7 @@ def _ssl_options(args): acceptableCiphers=acceptable) return options + def listen_with_ssl(app, args): reactor.listenSSL(args.port, Site(app.resource), _ssl_options(args), interface=args.host) |