summaryrefslogtreecommitdiff
path: root/rtslib/target.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtslib/target.py')
-rw-r--r--rtslib/target.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtslib/target.py b/rtslib/target.py
index 7a1e799..2a5591a 100644
--- a/rtslib/target.py
+++ b/rtslib/target.py
@@ -238,7 +238,7 @@ class TPG(CFSNode):
if os.path.isfile(path) and (boolean != self._get_enable()):
try:
fwrite(path, str(int(boolean)))
- except IOError, e:
+ except IOError as e:
raise RTSLibError("Cannot change enable state: %s" % e)
def _get_nexus(self):
@@ -696,7 +696,7 @@ class NetworkPortal(CFSNode):
try:
self._create_in_cfs_ine(mode)
- except OSError, msg:
+ except OSError as msg:
raise RTSLibError(msg[1])
def _get_ip_address(self):
@@ -818,7 +818,7 @@ class NodeACL(CFSNode):
path = "%s/cmdsn_depth" % self.path
try:
fwrite(path, "%s" % depth)
- except IOError, msg:
+ except IOError as msg:
msg = msg[1]
raise RTSLibError("Cannot set tcq_depth: %s" % str(msg))