We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f116cc commit 4807dd2Copy full SHA for 4807dd2
bpython/cli.py
@@ -1851,11 +1851,9 @@ def main_curses(scr):
1851
global stdscr
1852
global DO_RESIZE
1853
DO_RESIZE = False
1854
- if os.path.isfile(path):
1855
- migrate_rc(path)
+
1856
signal.signal(signal.SIGWINCH, lambda *_: sigwinch(scr))
1857
1858
- loadini()
1859
stdscr = scr
1860
try:
1861
curses.start_color()
@@ -1900,6 +1898,7 @@ def main():
1900
1898
path = os.path.expanduser('~/.bpythonrc') # migrating old configuration file
1901
1899
if os.path.isfile(path):
1902
migrate_rc(path)
+ loadini()
1903
1904
1905
o = curses.wrapper(main_curses)
0 commit comments