Kartic said the following on 1/30/2005 8:21 PM:
[EMAIL PROTECTED] said the following on 1/30/2005 7:43 PM:

Hi - It looks like your code encountered a blank line when you got this error.

You should move "if len(siteline) == 0" part right after your readline. The way you have done it really does not help.

def do_load(self, arg):
    sitefile = file('sitelist', 'r+', 1)
    while True:
      siteline = sitefile.readline()
      if len(siteline) == 0:
         break
      site_rawlist = siteline.split()
      sitelist[site_rawlist[0]] = site_rawlist[1:]


Sorry...siteline = sitefile.readline().strip()
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to