> username = getuser()
> string.strip
> (username)
> print "username is %s" % username
[snip]
> The autoconf.txt contains two lines, which first has an ip address and
> second a username. The problem I'm having is that the string.strip() doesn't
> appear to be stripping the newline off the username.
> Any ideas? If you need more information, just ask!
> James
string.strip() returns a copy of the string with whitespace removed,