diff options
author | Martin Nagy <mnagy@redhat.com> | 2008-10-14 21:22:44 +0200 |
---|---|---|
committer | Martin Nagy <mnagy@redhat.com> | 2008-10-14 21:22:44 +0200 |
commit | ff88652a405c7fd9236a9b1d80dd8955a9ca056d (patch) | |
tree | 3b8480d9347f871fad54e89fc03bf4e4bc368788 /ipalib/plugins/f_user.py | |
parent | 9788800aa41146551baee6d36314a20203fd9d20 (diff) | |
download | freeipa-ff88652a405c7fd9236a9b1d80dd8955a9ca056d.tar.gz freeipa-ff88652a405c7fd9236a9b1d80dd8955a9ca056d.tar.xz freeipa-ff88652a405c7fd9236a9b1d80dd8955a9ca056d.zip |
Convert string values to boolean when generating environment
Diffstat (limited to 'ipalib/plugins/f_user.py')
-rw-r--r-- | ipalib/plugins/f_user.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipalib/plugins/f_user.py b/ipalib/plugins/f_user.py index b35a1122..b2c191fb 100644 --- a/ipalib/plugins/f_user.py +++ b/ipalib/plugins/f_user.py @@ -47,6 +47,7 @@ class envtest(frontend.Command): print "" else: print " %s: %s" % (var, val) + return {} api.register(envtest) |