Oops, didn't give the appropriate namespace.

This commit is contained in:
Jeremy Fincher 2004-02-04 04:56:37 +00:00
parent 5d98b1a5bc
commit 9f33b4c1bd

View File

@ -705,7 +705,7 @@ class IgnoresDB(object):
def open(self, filename):
self.filename = filename
fd = file(self.filename)
for line in nonEmptyNonCommentLines(fd):
for line in utils.nonCommentNonEmptyLines(fd):
self.hostmasks.add(line.rstrip('\r\n'))
fd.close()