summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py2/IPython
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/ipython/py2/IPython')
-rw-r--r--contrib/python/ipython/py2/IPython/core/profiledir.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/ipython/py2/IPython/core/profiledir.py b/contrib/python/ipython/py2/IPython/core/profiledir.py
index b777f13da0d..c44062ba118 100644
--- a/contrib/python/ipython/py2/IPython/core/profiledir.py
+++ b/contrib/python/ipython/py2/IPython/core/profiledir.py
@@ -115,7 +115,7 @@ class ProfileDir(LoggingConfigurable):
if not os.path.exists(readme):
import pkgutil
- with open(readme, 'wb') as f:
+ with open(readme, 'wb') as f:
f.write(pkgutil.get_data(__name__, 'profile/README_STARTUP'))
@observe('security_dir')