Browse Source

no message

pull/2115/head
José Oliveira 8 years ago
parent
commit
dc50642a0f
  1. 2
      flask/helpers.py

2
flask/helpers.py

@ -972,4 +972,4 @@ def is_ascii(string):
:returns: True if string is fully ASCII encoded, False if not :returns: True if string is fully ASCII encoded, False if not
:rtype: boolean :rtype: boolean
""" """
return all(ord(char) < 128 for char in string): return all(ord(char) < 128 for char in string);

Loading…
Cancel
Save