Fixed bug in DatagramHandler.send()

This commit is contained in:
Vinay Sajip 2004-08-24 09:36:23 +00:00
parent a12fa148d7
commit fb154171c4

View file

@ -450,6 +450,8 @@ class DatagramHandler(SocketHandler):
when the network is busy - UDP does not guarantee delivery and
can deliver packets out of sequence.
"""
if self.sock is None:
self.createSocket()
self.sock.sendto(s, (self.host, self.port))
class SysLogHandler(logging.Handler):