Re: [PLUG] python boggle (resolved)

2013-07-25 Thread Michael Rasmussen
On Thu, Jul 25, 2013 at 12:26:40PM -0700, Russell Johnson wrote: > > On Jul 25, 2013, at 11:55 AM, "John Meissen" wrote: > > > Un-printable characters (including cr/lf) in the data read from the file? > > That was it. I looked at the file with vi after :set list, and it had a > newline. I adde

Re: [PLUG] python boggle (resolved)

2013-07-25 Thread Paul Munday
On Thu, 2013-07-25 at 12:26 -0700, Russell Johnson wrote: > On Jul 25, 2013, at 11:55 AM, "John Meissen" wrote: > > > Un-printable characters (including cr/lf) in the data read from the file? > > That was it. I looked at the file with vi after :set list, and it had a > newline. I added: > > HO

Re: [PLUG] python boggle (resolved)

2013-07-25 Thread Russell Johnson
On Jul 25, 2013, at 11:55 AM, "John Meissen" wrote: > Un-printable characters (including cr/lf) in the data read from the file? That was it. I looked at the file with vi after :set list, and it had a newline. I added: HOST_NAME = HOST_NAME[:-1] and now it works. Russell Johnson r...@dimst