Mercurial > evolve
comparison hgext/states.py @ 105:6300dd1c2df7
Add missing break line at the end of a debug message
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Mon, 28 Nov 2011 00:57:49 +0100 |
parents | 5111329280f1 |
children | 03bbce26553e |
comparison
equal
deleted
inserted
replaced
104:6c3c7a18f079 | 105:6300dd1c2df7 |
---|---|
1010 This can only make the boundary move on a newer changeset""" | 1010 This can only make the boundary move on a newer changeset""" |
1011 remoteheads = {} | 1011 remoteheads = {} |
1012 self.ui.debug('checking for states-heads on remote server') | 1012 self.ui.debug('checking for states-heads on remote server') |
1013 if 'states-heads' not in remote.listkeys('namespaces'): | 1013 if 'states-heads' not in remote.listkeys('namespaces'): |
1014 self.ui.debug('states-heads not enabled on the remote server, ' | 1014 self.ui.debug('states-heads not enabled on the remote server, ' |
1015 'marking everything as published') | 1015 'marking everything as published\n') |
1016 remoteheads[ST0] = remote.heads() | 1016 remoteheads[ST0] = remote.heads() |
1017 else: | 1017 else: |
1018 self.ui.debug('server has states-heads enabled, merging lists') | 1018 self.ui.debug('server has states-heads enabled, merging lists') |
1019 for hex, statenames in remote.listkeys('states-heads').iteritems(): | 1019 for hex, statenames in remote.listkeys('states-heads').iteritems(): |
1020 for stn in statenames.split(','): | 1020 for stn in statenames.split(','): |