Mercurial > hgsubversion
comparison hg_delta_editor.py @ 322:05cd4a5138bf
Move some .warn() calls to noisy levels instead.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Fri, 08 May 2009 16:11:52 -0500 |
parents | b6c6d32c8ef1 |
children | 4f4db3d2fdbb 235022089da6 |
comparison
equal
deleted
inserted
replaced
321:b6c6d32c8ef1 | 322:05cd4a5138bf |
---|---|
860 if baserev is None or baserev == -1: | 860 if baserev is None or baserev == -1: |
861 baserev = self.current_rev.revnum - 1 | 861 baserev = self.current_rev.revnum - 1 |
862 parent = self.get_parent_revision(baserev + 1, branch) | 862 parent = self.get_parent_revision(baserev + 1, branch) |
863 self.load_base_from_ctx(path, fpath, self.repo.changectx(parent)) | 863 self.load_base_from_ctx(path, fpath, self.repo.changectx(parent)) |
864 else: | 864 else: |
865 self.ui.warn('WARNING: Opening non-existant file %s\n' % path) | 865 self.ui.debug('WARNING: Opening non-existant file %s\n' % path) |
866 open_file = stash_exception_on_self(open_file) | 866 open_file = stash_exception_on_self(open_file) |
867 | 867 |
868 def aresamefiles(self, parentctx, childctx, files): | 868 def aresamefiles(self, parentctx, childctx, files): |
869 """Assuming all files exist in childctx and parentctx, return True | 869 """Assuming all files exist in childctx and parentctx, return True |
870 if none of them was changed in-between. | 870 if none of them was changed in-between. |