cleanup: remove semicolon

Summary: This diff is part of a series to cleanup fb-hgext and make it pass check-code.

Test Plan: all tests pass

Reviewers: #sourcecontrol, ttung

Differential Revision: https://phabricator.fb.com/D2812219
This commit is contained in:
Laurent Charignon 2016-01-07 18:30:24 -08:00
parent 51ae2847dc
commit 98f0478001

View File

@ -64,7 +64,7 @@ def _call_conduit(method, **kwargs):
for attempt in xrange(MAX_CONNECT_RETRIES):
try:
connection.request('POST', path, args, {'Connection': 'Keep-Alive'})
break;
break
except httplib.HTTPException as e:
connection.connect()
else: