diff options
Diffstat (limited to 'src/python')
-rwxr-xr-x | src/python/botan2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/botan2.py b/src/python/botan2.py index 92194dfb7..6f9d98a3d 100755 --- a/src/python/botan2.py +++ b/src/python/botan2.py @@ -83,7 +83,7 @@ def _ctype_bits(s): if isinstance(s, bytes): return s elif isinstance(s, str): - return s.encode('utf-8') # FIXME + return s.encode('utf-8') else: assert False |