8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8bc11e commit 7440874Copy full SHA for 7440874
Lib/plistlib.py
@@ -152,7 +152,7 @@ def _date_to_string(d):
152
def _escape(text):
153
m = _controlCharPat.search(text)
154
if m is not None:
155
- raise ValueError("strings can't contains control characters; "
+ raise ValueError("strings can't contain control characters; "
156
"use bytes instead")
157
text = text.replace("\r\n", "\n") # convert DOS line endings
158
text = text.replace("\r", "\n") # convert Mac line endings
0 commit comments