diff options
| author | Soren Hansen <soren@linux2go.dk> | 2011-03-17 22:21:55 +0100 |
|---|---|---|
| committer | Soren Hansen <soren@linux2go.dk> | 2011-03-17 22:21:55 +0100 |
| commit | afda510637577748d311f0779596c6fec17b00fa (patch) | |
| tree | b7ca9e78292a129fc8a64aea83b5274b23b98bac /nova | |
| parent | b331a3df4d921414409ebb7a738d97e34f782102 (diff) | |
| download | nova-afda510637577748d311f0779596c6fec17b00fa.tar.gz nova-afda510637577748d311f0779596c6fec17b00fa.tar.xz nova-afda510637577748d311f0779596c6fec17b00fa.zip | |
pep8 is hard
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/volume/driver.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/volume/driver.py b/nova/volume/driver.py index 9ebc67abc..779b46755 100644 --- a/nova/volume/driver.py +++ b/nova/volume/driver.py @@ -500,7 +500,8 @@ class ISCSIDriver(VolumeDriver): tid = self.db.volume_get_iscsi_target_num(context, volume_id) try: - self._execute('sudo', 'ietadm', '--op', 'show', '--tid=%(tid)d' % locals()) + self._execute('sudo', 'ietadm', '--op', 'show', + '--tid=%(tid)d' % locals()) except exception.ProcessExecutionError, e: # Instances remount read-only in this case. # /etc/init.d/iscsitarget restart and rebooting nova-volume |
