I edited ipython_qtconsole_config.py
to include a timestamp:
import datetime
c = get_config()
c.PromptManager.in_template = '%s In [\\#]: ' % datetime.datetime.now().strftime("%H:%M:%S")
When I type config PromptManager
in the shell I see that my change was made, however no timestamp is displayed. How can I fix this issue?