Skip to content

Commit 253997f

Browse files
committed
PR 73, branch renamed without slash due to travis testing configuration, debug logging unified in one command
1 parent 20d1349 commit 253997f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

netpyne_ui/netpyne_geppetto.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,9 @@ def rename(self, path, oldValue,newValue):
213213
eval(command)
214214
for model, synched_component in list(GeppettoJupyterGUISync.synched_models.items()):
215215
if model != '' and oldValue in model and path in model: #
216-
logging.debug("Rename funct model is " + model)
217216
GeppettoJupyterGUISync.synched_models.pop(model)
218217
newModel = re.sub("(['])(?:(?=(\\?))\2.)*?\1", lambda x:x.group(0).replace(oldValue,newValue, 1), model)
219-
logging.debug("Rename funct newModel is " + newModel)
218+
logging.debug("Rename funct - Model is "+model+" newModel is "+newModel)
220219
GeppettoJupyterGUISync.synched_models[newModel]=synched_component
221220

222221
def getPlotSettings(self, plot):

0 commit comments

Comments
 (0)