Skip to content

Commit b0b2944

Browse files
committed
Go over ipython
1 parent 93eca83 commit b0b2944

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

trepan/processor/command/ipython.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2009-2010, 2013, 2015, 2017, 2020, 2023 Rocky
3+
# Copyright (C) 2009-2010, 2013, 2015, 2017, 2020, 2023, 2026 Rocky
44
# Bernstein
55
#
66
# This program is free software: you can redistribute it and/or modify
@@ -68,11 +68,12 @@ def run(self, args):
6868
cfg = Config()
6969
banner_tmpl = """IPython trepan3k shell%s
7070
71-
Use dbgr(*string*) to issue non-continuing debugger command: *string*"""
71+
Use dbgr(*string*) to issue non-continuing debugger command.
72+
"""
7273

7374
debug = len(args) > 1 and args[1] == "-d"
7475
if debug:
75-
banner_tmpl += "\nVariable 'debugger' contains a trepan " "debugger object."
76+
banner_tmpl += "Variable 'debugger' contains a trepan debugger object.\n"
7677
pass
7778
try:
7879
from IPython.terminal.embed import InteractiveShellEmbed

0 commit comments

Comments
 (0)