Fix bug open/243 reported by Dimitri Papadopoulos

This commit is contained in:
Eric S. Raymond 2000-07-13 13:12:21 +00:00
parent 9a5086c598
commit dfbd4c7695
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ class netrc:
self.hosts = {}
self.macros = {}
lexer = shlex.shlex(fp)
lexer.wordchars = lexer.wordchars + '.'
# Allows @ in hostnames. Not a big deal...
lexer.wordchars = lexer.wordchars + '.-@'
while 1:
# Look for a machine, default, or macdef top-level keyword
toplevel = tt = lexer.get_token()