Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable htmldelegate: add an import for _(), cleanup import order

Changeset 13c0423cef87

Parent 8e2cd52d468a

by Steve Borho

Changes to one file · Browse files at 13c0423cef87 Showing diff from parent 8e2cd52d468a Diff from another changeset...

 
5
6
7
 
 
 
 
 
8
9
10
11
12
13
14
15
16
 
5
6
7
8
9
10
11
12
13
14
15
 
 
 
16
17
18
@@ -5,12 +5,14 @@
 # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.   +from mercurial import error + +from tortoisehg.hgqt.i18n import _ +from tortoisehg.hgqt import qtlib +  from PyQt4.QtCore import *  from PyQt4.QtGui import *   -from mercurial import error -from tortoisehg.hgqt import qtlib -  class HTMLDelegate(QStyledItemDelegate):   def __init__(self, parent=0, cols=None):   QStyledItemDelegate.__init__(self, parent)