comparison rhodecode/lib/middleware/simplegit.py @ 2207:17ff5693566b beta

white space cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 23 Apr 2012 18:32:30 +0200
parents d9972f76322e
children 19a6c23af14b
comparison
equal deleted inserted replaced
2205:6b97fb00fa03 2207:17ff5693566b
282 _hooks = dict(baseui.configitems('hooks')) or {} 282 _hooks = dict(baseui.configitems('hooks')) or {}
283 if action == 'push' and _hooks.get(push_hook): 283 if action == 'push' and _hooks.get(push_hook):
284 log_push_action(ui=baseui, repo=repo) 284 log_push_action(ui=baseui, repo=repo)
285 elif action == 'pull' and _hooks.get(pull_hook): 285 elif action == 'pull' and _hooks.get(pull_hook):
286 log_pull_action(ui=baseui, repo=repo) 286 log_pull_action(ui=baseui, repo=repo)
287