comparison hgext/convert/__init__.py @ 4939:cdd33a048289

removed trailing whitespace
author Thomas Arendsen Hein <thomas@intevation.de>
date Sat, 21 Jul 2007 10:30:51 +0200
parents ad09ce1d393c
children 71fed370b7a7
comparison
equal deleted inserted replaced
4938:02b127749dc0 4939:cdd33a048289
190 afile.close() 190 afile.close()
191 191
192 def copy(self, rev): 192 def copy(self, rev):
193 c = self.commitcache[rev] 193 c = self.commitcache[rev]
194 files = self.source.getchanges(rev) 194 files = self.source.getchanges(rev)
195 195
196 do_copies = (hasattr(c, 'copies') and hasattr(self.dest, 'copyfile')) 196 do_copies = (hasattr(c, 'copies') and hasattr(self.dest, 'copyfile'))
197 197
198 for f, v in files: 198 for f, v in files:
199 try: 199 try:
200 data = self.source.getfile(f, v) 200 data = self.source.getfile(f, v)