From 488c9f28cbbf7a67a539342c0a5b0505ca7ab786 2013-09-04 02:48:23 From: Paul Ivanov Date: 2013-09-04 02:48:23 Subject: [PATCH] fix bug in mathjax previously, if from IPython.external.mathjax import * was called, it would cause an error, since the dest variable was renamed to default_dest --- diff --git a/IPython/external/mathjax.py b/IPython/external/mathjax.py index 2e499fe..f196d5f 100644 --- a/IPython/external/mathjax.py +++ b/IPython/external/mathjax.py @@ -259,7 +259,7 @@ def main() : if __name__ == '__main__' : sys.exit(main()) -__all__ = ['install_mathjax', 'main', 'dest'] +__all__ = ['install_mathjax', 'main', 'default_dest'] """ Test notes: