# HG changeset patch
# User Adrian Buehlmann <adr...@cadifra.com>
# Date 1253826423 -7200
# Node ID 69248b2b3144f30a48e7d69e18d44d6c258175d4
# Parent  5c5c573f9f9d8832dafbece663c9bde3324db877
changeset: print user and date on separate lines

diff --git a/tortoisehg/hgtk/changeset.py b/tortoisehg/hgtk/changeset.py
--- a/tortoisehg/hgtk/changeset.py
+++ b/tortoisehg/hgtk/changeset.py
@@ -237,7 +237,8 @@ class ChangeSet(gdialog.GDialog):
         title_line(_('changeset:'), change + ' ' + summary, 'changeset')
         if branch != 'default':
             title_line(_('branch:'), branch, 'greybg')
-        title_line(_('user/date:'), ctx.user() + '\t' + date, 'changeset')
+        title_line(_('user:'), ctx.user(), 'changeset')
+        title_line(_('date:'), date, 'changeset')
 
         def insert_link(title, ctx, highlight=False):
             try:

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Tortoisehg-develop mailing list
Tortoisehg-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to