From 47f252a5e474e7d231641ab49e234cf6e11337ed Mon Sep 17 00:00:00 2001 From: vsr Date: Tue, 13 Oct 2020 18:53:42 +0300 Subject: [PATCH] From the community forum: none -> None --- src/KERNEL_PY/salome_iapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KERNEL_PY/salome_iapp.py b/src/KERNEL_PY/salome_iapp.py index 6be459cb1..dda9b8166 100644 --- a/src/KERNEL_PY/salome_iapp.py +++ b/src/KERNEL_PY/salome_iapp.py @@ -97,7 +97,7 @@ class SalomeOutsideGUI(object): def getSelected(self, i): """Get the selection number i """ print("SalomeOutsideGUI: no selection mechanism available outside GUI") - return none + return None def AddIObject(self, Entry): """Add an entry""" @@ -198,4 +198,4 @@ def register_module_in_study(name, syncCall=True): else: session_server.emitMessageOneWay(message) except: - pass \ No newline at end of file + pass -- 2.39.2