Skip to content

Commit 3ebc5ea

Browse files
committed
Merge branch 'development' of https://github.com/MetaCell/NetPyNE-UI into development
2 parents dbf16d8 + ae7ae01 commit 3ebc5ea

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

netpyne_ui/netpyne_geppetto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def globalMessageHandler(identifier, command, parameters):
453453
GeppettoJupyterModelSync.events_controller.triggerEvent(
454454
"receive_python_message", {'id': identifier, 'response': response})
455455
except Exception as e:
456-
return self.getJSONError("Unhandle exception in Global Message Handler",traceback.format_exc())
456+
return netpyne_geppetto.getJSONError("Unhandle exception in Global Message Handler",traceback.format_exc())
457457

458458

459459
def configure_logging():

utilities/gitall.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def main(argv):
7777
elif(argv[0] == 'remote'):
7878
command = ['git', 'remote', '-v']
7979

80+
elif(argv[0] == 'diff'):
81+
command = ['git', 'diff']
82+
8083
elif(argv[0] == 'checkout'):
8184
if(len(argv) == 2):
8285
command = ['git', 'checkout', argv[1]]

0 commit comments

Comments
 (0)