summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-10-27 01:35:40 -0600
committerJason Gerard DeRose <jderose@redhat.com>2008-10-27 01:35:40 -0600
commitd76202fea37e63fbc660ed2cf2059f455b8e2213 (patch)
tree90144648d8c0904c048c6e61e54ec4f9543b7689 /ipalib/frontend.py
parent25a7df9615058372b81a41df6baa2c4692df0063 (diff)
downloadfreeipa-d76202fea37e63fbc660ed2cf2059f455b8e2213.tar.gz
freeipa-d76202fea37e63fbc660ed2cf2059f455b8e2213.tar.xz
freeipa-d76202fea37e63fbc660ed2cf2059f455b8e2213.zip
API.env is now an Env instance rather than an Environment instance
Diffstat (limited to 'ipalib/frontend.py')
-rw-r--r--ipalib/frontend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index d918dd833..62a503cc5 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -668,7 +668,7 @@ class Command(plugable.Plugin):
on the nearest IPA server and the actual work this command
performs is executed remotely.
"""
- if self.api.env.server_context:
+ if self.api.env.in_server:
target = self.execute
else:
target = self.forward