From 87ea77d12d12645146ce002c5230687714511310 Mon Sep 17 00:00:00 2001 From: Brian Muller Date: Thu, 7 Apr 2016 09:39:29 +0300 Subject: [PATCH] formating update, bumped version --- kademlia/__init__.py | 2 +- kademlia/network.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kademlia/__init__.py b/kademlia/__init__.py index 024305f..00c3bce 100644 --- a/kademlia/__init__.py +++ b/kademlia/__init__.py @@ -1,5 +1,5 @@ """ Kademlia is a Python implementation of the Kademlia protocol for `Twisted `_. """ -version_info = (0, 5) +version_info = (0, 6) version = '.'.join(map(str, version_info)) diff --git a/kademlia/network.py b/kademlia/network.py index 04dca70..044df4c 100644 --- a/kademlia/network.py +++ b/kademlia/network.py @@ -47,7 +47,7 @@ class Server(object): This is the same as calling:: reactor.listenUDP(port, server.protocol) - + Provide interface="::" to accept ipv6 address """ return reactor.listenUDP(port, self.protocol, interface)