diff options
| author | Kanagaraj M <kmayilsa@redhat.com> | 2014-06-05 14:52:22 +0530 | 
|---|---|---|
| committer | Sahina Bose <sabose@redhat.com> | 2014-06-05 02:30:36 -0700 | 
| commit | aaa4484f7ae6d45d8eee240e5769379b2c9d8ea7 (patch) | |
| tree | 4c1ef3e175f92dac680c3df5ee5765f0038cc99a | |
| parent | cdb615aa72b5647dbd238504b0e52390db0195cc (diff) | |
plugins: fix pep8 error in check_disk_inode
Fix pep8 issue.
Change-Id: Ib4cb81e74f2fa05e68be71e6c33b58ab64713eac
Bug-Url: https://bugzilla.redhat.com/1083849
Signed-off-by: Kanagaraj M <kmayilsa@redhat.com>
Reviewed-on: http://review.gluster.org/7990
Reviewed-by: Shubhendu Tripathi <shtripat@redhat.com>
| -rwxr-xr-x | plugins/check_disk_and_inode.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_disk_and_inode.py b/plugins/check_disk_and_inode.py index 78aa7a2..d7ee148 100755 --- a/plugins/check_disk_and_inode.py +++ b/plugins/check_disk_and_inode.py @@ -38,8 +38,8 @@ def getVal(val):  def getUsageAndFree(command, lvm):      disk = {'path': None, 'usePercent': None, 'avail': None, -            'used': None, 'size': None, 'fs': None, 'status':None, -            'retCode':0} +            'used': None, 'size': None, 'fs': None, 'status': None, +            'retCode': 0}      status = commands.getstatusoutput(command)      if status[0] != 0:          disk['retCode'] = status[0]  | 
