comparison hggit/overlay.py @ 1111:f1c4e2ba8ff9

cleanup: fix whitespace around operators
author Sean Farley <sean@farley.io>
date Mon, 27 Nov 2017 18:24:34 -0500
parents 94aaea5c65f7
children 8ed6c0cae9b8
comparison
equal deleted inserted replaced
1110:94aaea5c65f7 1111:f1c4e2ba8ff9
154 if isinstance(match, bool): 154 if isinstance(match, bool):
155 clean = match 155 clean = match
156 match = None 156 match = None
157 157
158 kwargs = { 158 kwargs = {
159 'clean' : clean 159 'clean': clean
160 } 160 }
161 # Older versions of mercurial don't support the match arg, so only add it if 161 # Older versions of mercurial don't support the match arg, so only add it if
162 # it exists. 162 # it exists.
163 if match is not None: 163 if match is not None:
164 kwargs['match'] = match 164 kwargs['match'] = match