From dfbd4c769516f750fb58cc819c7cdfa1592cf3e3 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 13 Jul 2000 13:12:21 +0000 Subject: Fix bug open/243 reported by Dimitri Papadopoulos --- Lib/netrc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/netrc.py b/Lib/netrc.py index d24c388..60849ce 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py @@ -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() -- cgit v0.12