From 49d27c82e62a555d415aaf63562fd22971a2961d Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 23 Dec 2000 14:20:24 +0000 Subject: Remove superfluous semicolons --- Lib/netrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/netrc.py') diff --git a/Lib/netrc.py b/Lib/netrc.py index e3374b062a..679669fb40 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py @@ -46,7 +46,7 @@ class netrc: tt = lexer.get_token() if tt=='' or tt == 'machine' or tt == 'default' or tt == 'macdef': if toplevel == 'macdef': - break; + break elif login and password: self.hosts[entryname] = (login, account, password) lexer.push_token(tt) -- cgit v1.2.1