Skip to content
Snippets Groups Projects
Commit 0b79fc9e authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Bugfix in fsl.utils.platform, importing itself instead of built-in

platform module.
parent d6dd21d0
No related branches found
No related tags found
No related merge requests found
...@@ -15,10 +15,21 @@ import logging ...@@ -15,10 +15,21 @@ import logging
import os import os
import sys import sys
import platform as builtin_platform import importlib
import fsl.utils.notifier as notifier import fsl.utils.notifier as notifier
# An annoying consequence of using
# a system-module name for our own
# module is that we can't import
# it directly (as it will attempt
# to import itself, i.e. this module).
#
# This is only necessary in Python 2.x
# (as python 3 disallows relative
# imports).
builtin_platform = importlib.import_module('platform')
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment