summary refs log tree commit diff
path: root/synapse/util/stringutils.py
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <daniel@matrix.org>2015-08-28 15:35:39 +0100
committerDaniel Wagner-Hall <daniel@matrix.org>2015-08-28 15:35:39 +0100
commit4d1ea4000856cd29778da2616fb8f602892905e0 (patch)
tree68e4786675aa53586f31b27608f5acfe69a687af /synapse/util/stringutils.py
parentAllow users to redact their own events (diff)
parentMerge branch 'release-v0.10.0' into develop (diff)
downloadsynapse-4d1ea4000856cd29778da2616fb8f602892905e0.tar.xz
Merge branch 'develop' into redactyoself
Conflicts:
	synapse/handlers/_base.py
Diffstat (limited to 'synapse/util/stringutils.py')
-rw-r--r--synapse/util/stringutils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/util/stringutils.py b/synapse/util/stringutils.py
index 7a1e96af37..f3a36340e4 100644
--- a/synapse/util/stringutils.py
+++ b/synapse/util/stringutils.py
@@ -38,6 +38,8 @@ def random_string_with_symbols(length):
 def is_ascii(s):
     try:
         s.encode("ascii")
+    except UnicodeEncodeError:
+        return False
     except UnicodeDecodeError:
         return False
     else: