- commit
- 8520910c981ce22174305168561680365230691b
- parent
- 22fd5edb712f0b9c3c4cc5cdbad54179671bec48
- Author
- Tobias Bengfort <tobias.bengfort@gmx.net>
- Date
- 2014-10-04 15:58
do not hide error messages in client
Diffstat
| M | laneya/client.py | 3 | ++- |
1 files changed, 2 insertions, 1 deletions
diff --git a/laneya/client.py b/laneya/client.py
@@ -38,7 +38,8 @@ def main(): 38 38 log.startLogging(sys.stdout) 39 39 endpoint = TCP4ClientEndpoint(reactor, 'localhost', 5001) 40 40 endpoint.connect(Factory.forProtocol(ClientProtocol))\41 -1 .addCallback(connected)-1 41 .addCallback(connected)\ -1 42 .addErrback(log.err) 42 43 reactor.run() 43 44 44 45