summaryrefslogtreecommitdiffstats
path: root/Lib/netrc.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-12-23 14:20:24 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-12-23 14:20:24 (GMT)
commit49d27c82e62a555d415aaf63562fd22971a2961d (patch)
tree4ba02d9d56099c5d7d0a628ca5db979443ff000f /Lib/netrc.py
parentf07aad171a57dcc1e661d56660eb4ca51a2944d9 (diff)
downloadcpython-49d27c82e62a555d415aaf63562fd22971a2961d.zip
cpython-49d27c82e62a555d415aaf63562fd22971a2961d.tar.gz
cpython-49d27c82e62a555d415aaf63562fd22971a2961d.tar.bz2
Remove superfluous semicolons
Diffstat (limited to 'Lib/netrc.py')
-rw-r--r--Lib/netrc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/netrc.py b/Lib/netrc.py
index e3374b0..679669f 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)