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

stable about: clean up unused imports and assignments

Changeset 1bd3b5c595bf

Parent d887c7ccf021

by Yuya Nishihara

Changes to one file · Browse files at 1bd3b5c595bf Showing diff from parent d887c7ccf021 Diff from another changeset...

 
11
12
13
14
 
15
16
17
18
19
20
 
21
22
23
 
183
184
185
186
 
187
188
189
 
11
12
13
 
14
15
16
17
18
19
 
20
21
22
23
 
183
184
185
 
186
187
188
189
@@ -11,13 +11,13 @@
 TortoiseHg About dialog - PyQt4 version  """   -import os, sys, urllib2 +import sys    from mercurial import ui, url    from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import qtlib -from tortoisehg.util import version, hglib, shlib, paths +from tortoisehg.util import version, hglib, paths    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -183,7 +183,7 @@
  if '+' in thgv:   thgv = thgv[:thgv.index('+')]   curver = tuple([int(p) for p in thgv.split('.')]) - except Exception, e: + except Exception:   curver = (0,0,0)   if newver > curver:   url_lbl = _('A new version of TortoiseHg is ready for download!')