Verify: fix ERROR message indentation
authorGuido Trotter <ultrotter@google.com>
Thu, 10 Apr 2008 10:18:14 +0000 (10:18 +0000)
committerGuido Trotter <ultrotter@google.com>
Thu, 10 Apr 2008 10:18:14 +0000 (10:18 +0000)
All ERROR messages in cluster verify are indented by four spaces, this one is
indented by two. Fixing this skew.

Reviewed-by: imsnah, iustinp

lib/cmdlib.py

index a8db471..3d61d9d 100644 (file)
@@ -624,7 +624,7 @@ class LUVerifyCluster(NoHooksLU):
     # compares ganeti version
     local_version = constants.PROTOCOL_VERSION
     if not remote_version:
-      feedback_fn(" - ERROR: connection to %s failed" % (node))
+      feedback_fn("  - ERROR: connection to %s failed" % (node))
       return True
 
     if local_version != remote_version: