summaryrefslogtreecommitdiffstats
path: root/ipa-client
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-09-24 10:53:09 -0400
committerMartin Kosek <mkosek@redhat.com>2012-09-24 18:00:46 +0200
commit29e0f3b465c56a2ba1562b46059269f4983bc3cf (patch)
treee1c70611abc688b5be48a4bebdcbd5ce7832266e /ipa-client
parent909b8ffbdfcff701fdf9c7133fceb5bf4c7a2555 (diff)
downloadfreeipa.git-29e0f3b465c56a2ba1562b46059269f4983bc3cf.tar.gz
freeipa.git-29e0f3b465c56a2ba1562b46059269f4983bc3cf.tar.xz
freeipa.git-29e0f3b465c56a2ba1562b46059269f4983bc3cf.zip
Fix python syntax in ipa-client-automount
https://fedorahosted.org/freeipa/ticket/3081
Diffstat (limited to 'ipa-client')
-rwxr-xr-xipa-client/ipa-install/ipa-client-automount2
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 d04350ed..d9a63e7e 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)