##// END OF EJS Templates
Small bugfix for pylab threaded backends.
fperez -
Show More
@@ -4,7 +4,7 b''
4 4 All the matplotlib support code was co-developed with John Hunter,
5 5 matplotlib's author.
6 6
7 $Id: Shell.py 1326 2006-05-25 02:07:11Z fperez $"""
7 $Id: Shell.py 1327 2006-05-25 03:33:58Z fperez $"""
8 8
9 9 #*****************************************************************************
10 10 # Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu>
@@ -503,7 +503,7 b' class MatplotlibMTShell(MatplotlibShellBase,MTInteractiveShell):'
503 503
504 504 def __init__(self,name,usage=None,rc=Struct(opts=None,args=None),
505 505 user_ns=None,user_global_ns=None, **kw):
506 user_ns,b2 = self._matplotlib_config(name)
506 user_ns,b2 = self._matplotlib_config(name,user_ns)
507 507 MTInteractiveShell.__init__(self,name,usage,rc,user_ns,user_global_ns,
508 508 banner2=b2,**kw)
509 509
General Comments 0
You need to be logged in to leave comments. Login now