From 17016750f454cd187045b3af4e1b8d256ab94ba2 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 24 Sep 2012 10:53:09 -0400 Subject: [PATCH] Fix python syntax in ipa-client-automount https://fedorahosted.org/freeipa/ticket/3081 --- ipa-client/ipa-install/ipa-client-automount | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-client/ipa-install/ipa-client-automount b/ipa-client/ipa-install/ipa-client-automount index d04350ed8..d9a63e7ee 100755 --- a/ipa-client/ipa-install/ipa-client-automount +++ b/ipa-client/ipa-install/ipa-client-automount @@ -433,7 +433,7 @@ def main(): except errors.NotFound: sys.exit("Automount location '%s' does not exist" % options.location) except errors.PublicError, e: - sys.exit("Cannot connect to the server due to generic error: %s", str(e)) + sys.exit("Cannot connect to the server due to generic error: %s" % str(e)) finally: os.remove(ccache_name)