diff options
author | Necoro <> | 2007-10-22 22:17:48 +0000 |
---|---|---|
committer | Necoro <> | 2007-10-22 22:17:48 +0000 |
commit | 6d862d7a961ce70bc24450aadc99a901e5ab19c8 (patch) | |
tree | 7873eb36ea29dffd5f87e3131200e41128b1a012 /portato.py | |
parent | 6164e60388eed0f30a705e552e25e7c2b058550c (diff) | |
download | portato-6d862d7a961ce70bc24450aadc99a901e5ab19c8.tar.gz portato-6d862d7a961ce70bc24450aadc99a901e5ab19c8.tar.bz2 portato-6d862d7a961ce70bc24450aadc99a901e5ab19c8.zip |
bundled shm module
Diffstat (limited to '')
-rwxr-xr-x | portato.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -18,7 +18,10 @@ import sys, os, subprocess import gettext, locale from optparse import OptionParser, SUPPRESS_HELP -import shm_wrapper as shm +try: + import shm_wrapper as shm +except ImportError: + from portato.shm import shm_wrapper as shm from portato import listener from portato.constants import VERSION, FRONTENDS, STD_FRONTEND, XSD_LOCATION, LOCALE_DIR, APP, SU_COMMAND |