2
0
mirror of https://opendev.org/x/pyghmi synced 2025-02-16 02:29:26 +00:00

Fix errors after git repo transition.

I realized that I had never pushed __init__.py for private.

While doing tests locally, I noticed that the pep changes broke at least one
place in code, correct that.

Change-Id: Ia31cb8a75a7109a6d002524e08ef335e1c5018d4
This commit is contained in:
Jarrod Johnson 2013-07-02 13:29:26 -04:00
parent 016326795b
commit e0e39bda9a
2 changed files with 1 additions and 1 deletions

0
ipmi/private/__init__.py Normal file
View File

View File

@ -905,7 +905,7 @@ class Session:
Session.wait_for_rsp()
Session.waiting_sessions[self] = {}
Session.waiting_sessions[self]['ipmisession'] = self
Session.waiting_sessions[self]['timeout'] = self.timeout + time()
Session.waiting_sessions[self]['timeout'] = self.timeout + time.time()
Session.pending += 1
if self.sockaddr:
Session.socket.sendto(self.netpacket, self.sockaddr)