# HG changeset patch # User Sean Farley # Date 1472595523 25200 # Node ID c817efec4afc43a98a5a594443b4182ca40b6bc9 # Parent 093af1c7d58d05f4884c6b3e7246d6ac6cb119de flake8: fix E111 style OFF BY ONE ERRORS ARE THE WORST diff -r 093af1c7d58d -r c817efec4afc hgext3rd/topic/destination.py --- a/hgext3rd/topic/destination.py Tue Aug 30 15:15:05 2016 -0700 +++ b/hgext3rd/topic/destination.py Tue Aug 30 15:18:43 2016 -0700 @@ -15,11 +15,11 @@ onheadcheck=True, destspace=None): # XXX: take destspace into account if sourceset is None: - p1 = repo['.'] + p1 = repo['.'] else: # XXX: using only the max here is flacky. That code should eventually # be updated to take care of the whole sourceset. - p1 = repo[max(sourceset)] + p1 = repo[max(sourceset)] top = p1.topic() if top: revs = repo.revs('topic(%s) - obsolete()', top) diff -r 093af1c7d58d -r c817efec4afc setup.cfg --- a/setup.cfg Tue Aug 30 15:15:05 2016 -0700 +++ b/setup.cfg Tue Aug 30 15:18:43 2016 -0700 @@ -1,2 +1,2 @@ [flake8] -ignore = E261, E266, E302, E129, E731, E124, E713, E301, E501, E111, E123, W503 +ignore = E261, E266, E302, E129, E731, E124, E713, E301, E501, E123, W503