cherry picked cb5d027b about context managers
[nepi.git] / examples / linux / ccn_transfer_using_linuxapp.py
index 73dac5f..a22e561 100644 (file)
@@ -207,9 +207,8 @@ apps = [ccncat]
 ec.wait_finished(apps)
 
 stdout = ec.trace(ccncat, "stdout")
-f = open("video.ts", "w")
-f.write(stdout)
-f.close()
+with open("video.ts", "w") as f:
+    f.write(stdout)
 
 # Shutdown the experiment controller
 ec.shutdown()