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 6241239e6..c1bb8d047 100644 --- a/libxcb/src/c_client.py +++ b/libxcb/src/c_client.py @@ -1022,7 +1022,7 @@ except getopt.GetoptError, err: for (opt, arg) in opts:
if opt == '-p':
- sys.path.insert(0,arg)
+ sys.path.append(arg)
# Import the module class
try:
|