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

stable fileview: reorder imports to tortoisehg standard

We typically order our imports global, mercurial, tortoisehg, pyqt

Changeset b797374dc7b1

Parent f649a29a4f21

by Steve Borho

Changes to one file · Browse files at b797374dc7b1 Showing diff from parent f649a29a4f21 Diff from another changeset...

 
24
25
26
27
28
29
30
31
32
33
34
35
 
 
 
 
36
37
38
 
24
25
26
 
 
 
 
27
28
29
30
31
32
33
34
35
36
37
38
@@ -24,15 +24,15 @@
 from mercurial import hg, error, match, patch, util  from mercurial import ui as uimod, mdiff   -from PyQt4.QtCore import * -from PyQt4.QtGui import * -from PyQt4 import Qsci -  from tortoisehg.util import hglib, patchctx  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import annotate, qscilib, qtlib, blockmatcher, lexers  from tortoisehg.hgqt import visdiff, wctxactions   +from PyQt4.QtCore import * +from PyQt4.QtGui import * +from PyQt4 import Qsci +  qsci = Qsci.QsciScintilla    class HgFileView(QFrame):