Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

thg: improve PYTHONPATH error message

Changeset 015e0f76ce87

Parent a554861105cd

by Steve Borho

Changes to one file · Browse files at 015e0f76ce87 Showing diff from parent a554861105cd Diff from another changeset...

Change 1 of 1 Show Entire File thg Stacked
 
30
31
32
33
34
 
 
35
36
37
 
30
31
32
 
 
33
34
35
36
37
@@ -30,8 +30,8 @@
 try:   import tortoisehg.hgqt.run  except ImportError: - sys.stderr.write("abort: couldn't find hgtk libraries in [%s]\n" % - ';'.join(sys.path)) + sys.stderr.write("abort: couldn't find tortoisehg libraries in [%s]\n" % + os.pathsep.join(sys.path))   sys.stderr.write("(check your install and PYTHONPATH)\n")   sys.exit(-1)