Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

csinfo: suppress empty user name for unapplied patches

Changeset 2603a61c25c7

Parent 27f0cd47bde3

by Phil Currier

Changes to one file · Browse files at 2603a61c25c7 Showing diff from parent 27f0cd47bde3 Diff from another changeset...

 
138
139
140
141
 
 
 
 
142
143
144
 
138
139
140
 
141
142
143
144
145
146
147
@@ -138,7 +138,10 @@
  return None   return hglib.tounicode(value)[:80]   elif item == 'user': - return hglib.tounicode(hglib.user(ctx)) + user = hglib.user(ctx) + if user: + return hglib.tounicode(user) + return None   elif item == 'shortuser':   return hglib.tounicode(hglib.username(hglib.user(ctx)))   elif item == 'dateage':