Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'calm/hint.py')
-rwxr-xr-xcalm/hint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/hint.py b/calm/hint.py
index 28a81b0..71fa7b9 100755
--- a/calm/hint.py
+++ b/calm/hint.py
@@ -232,7 +232,7 @@ def hint_file_parse(fn, kind, strict=False):
errors.append('%s at line %d' % (error, i))
if (item.count('"') != 0) and (item.count('"') != 2):
- errors.append('embedded quote at line %d' % (i))
+ errors.append('double-quote within double-quotes at line %d (hint files have no escape character)' % (i))
# key:value
match = re.match(r'^([^:\s]+):\s*(.*)$', item, re.DOTALL)