summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
authorMartin Nagy <mnagy@redhat.com>2010-04-15 11:59:16 +0200
committerRob Crittenden <rcritten@redhat.com>2010-04-23 17:19:28 -0400
commit1340875165150144aba07f89df9e39b5ecb43832 (patch)
treea34b445a661154adb12c4f617715d139dc069e3c /ipapython
parentba85312bf1304d20f4199038bcf4a3f900dad7cf (diff)
downloadfreeipa-1340875165150144aba07f89df9e39b5ecb43832.tar.gz
freeipa-1340875165150144aba07f89df9e39b5ecb43832.tar.xz
freeipa-1340875165150144aba07f89df9e39b5ecb43832.zip
Accept unicode for sysrestore
Diffstat (limited to 'ipapython')
-rw-r--r--ipapython/sysrestore.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipapython/sysrestore.py b/ipapython/sysrestore.py
index 78c9b6283..ddc3ee051 100644
--- a/ipapython/sysrestore.py
+++ b/ipapython/sysrestore.py
@@ -282,8 +282,8 @@ class StateFile:
by the string @key and with the value @value. @value may be
a string or boolean.
"""
- if not (isinstance(value, str) or isinstance(value, bool)):
- raise ValueError("Only strings or booleans supported")
+ if not isinstance(value, (str, bool, unicode)):
+ raise ValueError("Only strings, booleans or unicode strings are supported")
if not self.modules.has_key(module):
self.modules[module] = {}