Ignore:
Timestamp:
Nov 12, 2008, 6:59:41 PM (15 years ago)
Author:
broder
Message:

Some quick touch-ups in Yang's quoting code - and a changelog entry

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-dns/invirt-dns

    r1511 r1631  
    156156            in_quote = False
    157157            split_line = []
    158             for m in string_pat.finditer(line):
     158            for m in self.string_pat.finditer(line):
    159159                [x] = [x for x in m.groups() if x is not None]
    160                 split_line.append(escape_pat.sub(r'\1', x))
     160                split_line.append(self.escape_pat.sub(r'\1', x))
    161161            L.append(split_line)
    162162        return filter(None, L)
Note: See TracChangeset for help on using the changeset viewer.