diff options
author | Jeremy Kolb <jkolb@glorfindel.hsd1.ma.comcast.net> | 2008-04-20 16:26:51 -0400 |
---|---|---|
committer | Jeremy Kolb <jkolb@glorfindel.hsd1.ma.comcast.net> | 2008-04-20 16:26:51 -0400 |
commit | b3832bcc46d85110fdb2b553df6249a831cfe0fa (patch) | |
tree | dc2fd3f37a90811879f8641784d637d213dab581 | |
parent | 5ee915e12a102e86e141981bbce60ed81037dfdc (diff) |
Add mention of PYTHONPATH if xcbgen cannot be found.
-rwxr-xr-x | src/c_client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c_client.py b/src/c_client.py index 7bcf5e7..835ae5c 100755 --- a/src/c_client.py +++ b/src/c_client.py @@ -989,7 +989,8 @@ except ImportError: print '' print 'Failed to load the xcbgen Python package!' print 'Make sure that xcb/proto installed it on your Python path.' - print 'If not, you will need to create a .pth file to extend the path.' + print 'If not, you will need to create a .pth file or define $PYTHONPATH' + print 'to extend the path.' print 'Refer to the README file in xcb/proto for more info.' print '' raise |