diff options
author | William M. Brack <wbrack@src.gnome.org> | 2004-10-02 22:55:49 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2004-10-02 22:55:49 +0000 |
commit | cb40c222a4f92fb4519ec571547f2b8fcbe6a4ed (patch) | |
tree | 80ffac1f404aba3b9b6a2487a3b5532b2e5e2ce0 /check-relaxng-test-suite.py | |
parent | d1757abcb891e01a9017f4aad041cc306d0d467b (diff) | |
download | libxml2-cb40c222a4f92fb4519ec571547f2b8fcbe6a4ed.tar.gz |
changed changed sys.path setting from 'append' to 'insert' (patch supplied
* check-relaxng-test-suite.py, check-relaxng-test-suite2.py,
check-xinclude-test-suite.py, check-xml-test-suite.py,
check-xsddata-test-suite.py, doc/examples/index.py: changed
changed sys.path setting from 'append' to 'insert' (patch
supplied by Malcolm Tredinnick) (bug 153716)
Diffstat (limited to 'check-relaxng-test-suite.py')
-rwxr-xr-x | check-relaxng-test-suite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-relaxng-test-suite.py b/check-relaxng-test-suite.py index 08327583..e4dc6347 100755 --- a/check-relaxng-test-suite.py +++ b/check-relaxng-test-suite.py @@ -4,7 +4,7 @@ import time import os import string import StringIO -sys.path.append("python") +sys.path.insert(0, "python") import libxml2 # Memory debug specific |