diff options
Diffstat (limited to 'libxcb/src/c_client.py')
-rw-r--r-- | libxcb/src/c_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxcb/src/c_client.py b/libxcb/src/c_client.py index f93e2a69d..077f0854c 100644 --- a/libxcb/src/c_client.py +++ b/libxcb/src/c_client.py @@ -2291,7 +2291,7 @@ except getopt.GetoptError as err: for (opt, arg) in opts:
if opt == '-p':
- sys.path.append(arg)
+ sys.path.insert(1, arg)
# Import the module class
try:
|