comparison mercurial/cmdutil.py @ 5760:0145f9afb0e7

Removed tabs and trailing whitespace in python files
author Thomas Arendsen Hein <thomas@intevation.de>
date Sat, 29 Dec 2007 19:49:48 +0100
parents be367cbafe70
children 7b7f03c7dfa5
comparison
equal deleted inserted replaced
5759:027264e720aa 5760:0145f9afb0e7
771 yield self.t('extra', **args) 771 yield self.t('extra', **args)
772 772
773 def showcopies(**args): 773 def showcopies(**args):
774 c = [{'name': x[0], 'source': x[1]} for x in copies] 774 c = [{'name': x[0], 'source': x[1]} for x in copies]
775 return showlist('file_copy', c, plural='file_copies', **args) 775 return showlist('file_copy', c, plural='file_copies', **args)
776 776
777 files = [] 777 files = []
778 def getfiles(): 778 def getfiles():
779 if not files: 779 if not files:
780 files[:] = self.repo.status( 780 files[:] = self.repo.status(
781 log.parents(changenode)[0], changenode)[:3] 781 log.parents(changenode)[0], changenode)[:3]
782 return files 782 return files
783 def showfiles(**args): 783 def showfiles(**args):
784 return showlist('file', changes[3], **args) 784 return showlist('file', changes[3], **args)