diff options
author | Rob Crittenden <rcritten@redhat.com> | 2012-09-24 10:53:09 -0400 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2012-09-24 18:00:36 +0200 |
commit | 17016750f454cd187045b3af4e1b8d256ab94ba2 (patch) | |
tree | 6d42bf8008f272a04dacc4f57fce3a3169bdd706 /ipa-client | |
parent | 0b254e8b1e60b46ce29fecedbc088921a526fbd8 (diff) | |
download | freeipa-17016750f454cd187045b3af4e1b8d256ab94ba2.tar.gz freeipa-17016750f454cd187045b3af4e1b8d256ab94ba2.tar.xz freeipa-17016750f454cd187045b3af4e1b8d256ab94ba2.zip |
Fix python syntax in ipa-client-automount
https://fedorahosted.org/freeipa/ticket/3081
Diffstat (limited to 'ipa-client')
-rwxr-xr-x | ipa-client/ipa-install/ipa-client-automount | 2 |
1 files changed, 1 insertions, 1 deletions
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) |