From 9e813ff77867c66a0d5e41063e890685af5c2152 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 24 Oct 2004 06:34:28 +0000 Subject: [PATCH] Added an XXX. --- src/registry.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/registry.py b/src/registry.py index 3ce1c1cb0..75d9fa5b8 100644 --- a/src/registry.py +++ b/src/registry.py @@ -74,6 +74,10 @@ def open(filename, clear=False): acc = '' for line in fd: line = line.rstrip('\r\n') + # XXX There should be some way to determine whether or not we're + # starting a new variable or not. As it is, if there's a backslash + # at the end of every line in a variable, it won't be read, and + # worse, the error will pass silently. if line.endswith('\\'): acc += line[:-1] continue