Skip to content

Commit 43c07a2

Browse files
committed
Enable StreamCapture() on Windows
Following the last commit, the `StreamCapture()` can now be enabled on Windows
1 parent 93a4f5b commit 43c07a2

File tree

1 file changed

+1
-2
lines changed
  • bindings/jupyroot/python/JupyROOT/helpers

1 file changed

+1
-2
lines changed

bindings/jupyroot/python/JupyROOT/helpers/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,7 @@ def loadMagicsAndCapturers():
611611
extMgr = ExtensionManager(ip)
612612
for extName in extNames:
613613
extMgr.load_extension(extName)
614-
if not 'win32' in sys.platform:
615-
captures.append(StreamCapture())
614+
captures.append(StreamCapture())
616615
captures.append(CaptureDrawnPrimitives())
617616

618617
for capture in captures: capture.register()

0 commit comments

Comments
 (0)