summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Asir <tjeyasin@redhat.com>2014-05-28 12:38:49 +0530
committerSahina Bose <sabose@redhat.com>2014-05-28 00:15:20 -0700
commit3e3dcdd9f3eea75237a7d2995e153a21d0af6e6b (patch)
tree3fb4375f5826275db59a5bf41a351eb41db33ff8
parent65f148dd2d101ce4c320de15457ac76420d21fa3 (diff)
Fix pep8 line too long error in check_gluster_proc_status.py file.
Change-Id: I0cab5c2909240ec4c04bd302869bd4b0a62854f5 Signed-off-by: Timothy Asir <tjeyasin@redhat.com> Reviewed-on: http://review.gluster.org/7898 Tested-by: Timothy Asir <tim.gluster@gmail.com> Reviewed-by: Kanagaraj M <kmayilsa@redhat.com>
-rwxr-xr-xplugins/check_gluster_proc_status.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/check_gluster_proc_status.py b/plugins/check_gluster_proc_status.py
index 6995d20..f17ded4 100755
--- a/plugins/check_gluster_proc_status.py
+++ b/plugins/check_gluster_proc_status.py
@@ -84,7 +84,8 @@ if __name__ == '__main__':
status = utils.PluginStatusCode.CRITICAL
msg = "Brick - %s not found" % args.brickPath
elif args.type != _GLUSTERD:
- msg = "UNKNOWN: Brick - %s status could not be determined" % args.brickPath
+ msg = "UNKNOWN: Brick - %s status could not be determined" % \
+ (args.brickPath)
status = utils.PluginStatusCode.UNKNOWN
print msg
exit(status)