diff options
Diffstat (limited to 'ubuntu/lucid_automake/libraries/python-kde3/debian/pykdeconfig.py')
-rw-r--r-- | ubuntu/lucid_automake/libraries/python-kde3/debian/pykdeconfig.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/pykdeconfig.py b/ubuntu/lucid_automake/libraries/python-kde3/debian/pykdeconfig.py new file mode 100644 index 000000000..b6c29318e --- /dev/null +++ b/ubuntu/lucid_automake/libraries/python-kde3/debian/pykdeconfig.py @@ -0,0 +1,11 @@ +# import the sipconfig.py for the normal or the debug build + +import sys + +if getattr(sys, "pydebug", False): + try: + from pykdeconfig_d import * + except ImportError, msg: + raise ImportError, 'No module named pykdeconfig; package python-kde3-dbg not installed' +else: + from pykdeconfig_nd import * |