Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

history: minor cleanups

Changeset d6887fd589f0

Parent 091020a06c59

by Steve Borho

Changes to one file · Browse files at d6887fd589f0 Showing diff from parent 091020a06c59 Diff from another changeset...

 
103
104
105
106
 
107
108
109
 
135
136
137
138
 
139
140
 
141
 
142
143
144
 
103
104
105
 
106
107
108
109
 
135
136
137
 
138
139
 
140
141
142
143
144
145
@@ -103,7 +103,7 @@
  return []     if revid not in self.revisions: - ctx = self.repo.changectx(revid) + ctx = self.repo[revid]     summary = ctx.description().replace('\0', '')   if self.repo.ui.configbool('tortoisehg', 'longsummary'): @@ -135,10 +135,11 @@
  branchstr += branch['name']     if '<' in ctx.user(): - author = hglib.toutf(self.author_re.sub('', ctx.user()).strip(' ')) + author = self.author_re.sub('', ctx.user()).strip(' ')   else: - author = hglib.toutf(util.shortuser(ctx.user())) + author = util.shortuser(ctx.user())   + author = hglib.toutf(author)   date = hglib.displaytime(ctx.date())     wc_parent = revid in self.parents