Fix a wrong indentation

Change-Id: I7b09d87eaa4a5d074f0660bd94010719daa88e18
This commit is contained in:
zhanghongtao 2017-01-17 16:45:45 +08:00
parent 871cd1a6f2
commit 50e4f5ac5c
1 changed files with 1 additions and 1 deletions

View File

@ -433,7 +433,7 @@ class LinuxSCSI(executor.Executor):
def _format_lun_id(self, lun_id):
if lun_id < 256:
return lun_id
return lun_id
else:
return ("0x%04x%04x00000000" %
(lun_id & 0xffff, lun_id >> 16 & 0xffff))