diff options
Diffstat (limited to 'wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.py')
-rw-r--r-- | wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.py b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.py index b1d53de6b4f6..15631123fbcb 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.py +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.py @@ -24,8 +24,16 @@ class AgendaWizardDialogResources(object): SECTION_MINUTES = "MINUTES" def __init__(self): - 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 self.resAgendaWizardDialog_title = strings.RID_AGENDAWIZARDDIALOG_START_1 |