From 54b31d79b37c11066b0ac2184120a405bc608335 Mon Sep 17 00:00:00 2001 From: edbrz9 Date: Thu, 29 Dec 2022 13:53:30 +0100 Subject: [PATCH] write to output --- proj/y2t/y2t.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proj/y2t/y2t.py b/proj/y2t/y2t.py index 85e88a0..ddce1d6 100644 --- a/proj/y2t/y2t.py +++ b/proj/y2t/y2t.py @@ -2,7 +2,7 @@ import youtube_dl import sys import os -with open ("hello.txt", 'w') as file: +with open ("output/hello.txt", 'w') as file: file.write("hello file") url = sys.argv[1]