Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

hgtk: remove hard-coded path option

Changeset a647085f8d7e

Parent 61a33b76efc9

by Steve Borho

Changes to one file · Browse files at a647085f8d7e Showing diff from parent 61a33b76efc9 Diff from another changeset...

Change 1 of 2 Show Entire File hgtk Stacked
 
12
13
14
15
16
17
18
19
 
33
34
35
36
37
38
39
40
41
 
 
 
 
 
 
42
 
43
44
45
 
12
13
14
 
 
15
16
17
 
31
32
33
 
 
 
 
 
 
34
35
36
37
38
39
40
41
42
43
44
@@ -12,8 +12,6 @@
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  '''   -TORTOISEHG_PATH = '~/tools/tortoisehg-dev' -  import pygtk  pygtk.require('2.0')  import gtk @@ -33,13 +31,14 @@
  if thgpath not in sys.path:   sys.path.insert(0, thgpath)   else: - # try environment or hard-coded path - thgpath = os.environ.get('TORTOISEHG_PATH', TORTOISEHG_PATH) - thgpath = os.path.normpath(os.path.expanduser(thgpath)) - if os.path.exists(thgpath) and thgpath not in sys.path: - sys.path.insert(0, thgpath) - # else assume tortoise is already in PYTHONPATH + # try environment + thgpath = os.environ.get('TORTOISEHG_PATH') + if thgpath: + thgpath = os.path.normpath(os.path.expanduser(thgpath)) + if os.path.exists(thgpath) and thgpath not in sys.path: + sys.path.insert(0, thgpath)   +# else assume tortoise is already in PYTHONPATH  try:   import hggtk.hgtk  except ImportError: