diff -r 97e9b5cc51dc -r 70e464748aaa eric6/eric6.py --- a/eric6/eric6.py Wed Dec 02 19:09:38 2020 +0100 +++ b/eric6/eric6.py Fri Dec 04 18:29:31 2020 +0100 @@ -369,13 +369,12 @@ disabledPlugins.append(pluginName) for arg in sys.argv: if arg.startswith("--plugin=") and sys.argv.index(arg) < ddindex: - import Utilities # extract the plugin development option pluginFile = arg.replace("--plugin=", "").replace('"', "") sys.argv.remove(arg) ddindex -= 1 pluginFile = os.path.expanduser(pluginFile) - pluginFile = Utilities.normabspath(pluginFile) + pluginFile = os.path.abspath(pluginFile) break # is there a set of filenames or options on the command line,