From 0f5c77709f21ade52e7168ce9d1a53cbe4b33b1e Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Tue, 18 Dec 2012 17:48:30 +0100 Subject: [PATCH] cmdlib: Replace period with colon in error message Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/cmdlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index 0b1d5ce65..7ac4d4eea 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -15798,7 +15798,7 @@ class LUNetworkAdd(LogicalUnit): try: pool = network.AddressPool.InitializeNetwork(nobj) except errors.AddressPoolError, e: - raise errors.OpExecError("Cannot create IP pool for this network. %s" % e) + raise errors.OpExecError("Cannot create IP pool for this network: %s" % e) # Check if we need to reserve the nodes and the cluster master IP # These may not be allocated to any instances in routed mode, as -- GitLab