2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-15 14:17:18 +00:00

python: Avoid using 'type' as a variable name.

'type' is a Python built-in function, so it's best to avoid using it as
a variable name.

Reported-by: Reid Price <reid@nicira.com>
This commit is contained in:
Ben Pfaff
2011-08-23 09:50:46 -07:00
parent d272c10ecd
commit 8758e8a373
6 changed files with 35 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Nicira Networks
# Copyright (c) 2010, 2011 Nicira Networks
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -332,15 +332,15 @@ class Reconnect(object):
% self.name)
else:
if self.passive:
type = "listen"
type_ = "listen"
else:
type = "connection"
type_ = "connection"
if error > 0:
logging.warning("%s: %s attempt failed (%s)"
% (self.name, type, os.strerror(error)))
% (self.name, type_, os.strerror(error)))
else:
self.info_level("%s: %s attempt timed out"
% (self.name, type))
% (self.name, type_))
if (self.state in (Reconnect.Active, Reconnect.Idle)):
self.last_disconnected = now