File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ Features:
99Bug Fixes:
1010----------
1111* Fixed compatibility with sqlparse 0.4 (Thanks: [ mtorromeo] ).
12+ * Fixed iPython magic (Thanks: [ mwcm] ).
1213
13141.22.2
1415======
1516
1617Bug Fixes:
1718----------
1819
19- * Make the ` pwd ` module optional.
20+ * Make the ` pwd ` module optional.
2021
21221.22.1
2223======
@@ -790,3 +791,4 @@ Bug Fixes:
790791[ Zach DeCook ] : https://zachdecook.com
791792[ laixintao ] : https://github.com/laixintao
792793[ mtorromeo ] : https://github.com/mtorromeo
794+ [ mwcm ] : https://github.com/mwcm
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ Contributors:
7575 * Zach DeCook
7676 * kevinhwang91
7777 * KITAGAWA Yasutaka
78+ * Morgan Mitchell
7879 * Massimiliano Torromeo
7980
8081Creator:
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def load_ipython_extension(ipython):
1919def mycli_line_magic (line ):
2020 _logger .debug ('mycli magic called: %r' , line )
2121 parsed = sql .parse .parse (line , {})
22- conn = sql .connection .Connection . get (parsed ['connection' ])
22+ conn = sql .connection .Connection (parsed ['connection' ])
2323
2424 try :
2525 # A corresponding mycli object already exists
You can’t perform that action at this time.
0 commit comments