comparison silvermirror/hg.py @ 39:9e21b4fbd8b3

whitespace
author Jeff Hammel <k0scist@gmail.com>
date Tue, 12 May 2015 18:33:30 -0700
parents d17978d9697b
children
comparison
equal deleted inserted replaced
38:d17978d9697b 39:9e21b4fbd8b3
35 print ('Updating {}'.format(path)) 35 print ('Updating {}'.format(path))
36 repo.pull(source, update=True, insecure=True) 36 repo.pull(source, update=True, insecure=True)
37 except ServerError: 37 except ServerError:
38 repo = hglib.clone(source, path) 38 repo = hglib.clone(source, path)
39 return repo 39 return repo
40
40 41
41 def repositories(url): 42 def repositories(url):
42 """ 43 """
43 returns the list of repositories under a URL of an hg server 44 returns the list of repositories under a URL of an hg server
44 """ 45 """