diff options
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/WizardDialog.py')
-rw-r--r-- | wizards/com/sun/star/wizards/ui/WizardDialog.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/ui/WizardDialog.py b/wizards/com/sun/star/wizards/ui/WizardDialog.py index 7f0060bdc49d..afa865a224c0 100644 --- a/wizards/com/sun/star/wizards/ui/WizardDialog.py +++ b/wizards/com/sun/star/wizards/ui/WizardDialog.py @@ -28,8 +28,16 @@ from com.sun.star.frame import TerminationVetoException from com.sun.star.awt.PushButtonType import HELP, STANDARD from com.sun.star.awt.FontWeight import BOLD -import imp, os -imp.load_source('strings', os.path.join(os.path.dirname(__file__), '../common/strings.hrc')) +import sys, os + +# imp is deprecated since Python v.3.4 +if sys.version_info >= (3,3): + from importlib.machinery import SourceFileLoader + SourceFileLoader('strings', os.path.join(os.path.dirname(__file__), '../common/strings.hrc')).load_module() +else: + import imp + imp.load_source('strings', os.path.join(os.path.dirname(__file__), '../common/strings.hrc')) + import strings class WizardDialog(UnoDialog2): |