##// END OF EJS Templates
fix regex for cleaning old logs with ipcluster...
fix regex for cleaning old logs with ipcluster it still had the 'z' suffix from ages and ages ago, so no files would ever match. closes #4810

File last commit:

r12797:d1ebf45a
r14626:af98a808
Show More
ipython_config.py
13 lines | 287 B | text/x-python | PythonLexer
MinRK
reorganize default config files to match profiles as directories...
r3954 c = get_config()
MinRK
load_subconfig supports profiles...
r4030 app = c.InteractiveShellApp
MinRK
reorganize default config files to match profiles as directories...
r3954
# This can be used at any point in a config file to load a sub config
# and merge it into the current one.
MinRK
load_subconfig supports profiles...
r4030 load_subconfig('ipython_config.py', profile='default')
MinRK
reorganize default config files to match profiles as directories...
r3954
lines = """
import cmath
from math import *
"""
MinRK
update bundled profiles to use extend
r12797 app.exec_lines.append(lines)