diff options
author | Jody Bruchon <jody@jodybruchon.com> | 2020-09-17 14:46:11 -0400 |
---|---|---|
committer | Jody Bruchon <jody@jodybruchon.com> | 2020-09-17 14:46:11 -0400 |
commit | a5029645aed1557ab6bf4cde3e70e10fc9917693 (patch) | |
tree | 0869e97e8bf487ad2e0e3af7503a4e6d2c0dcdd9 | |
parent | ecdec1913fbe350b4dddd8b459b0f43464a8c5bc (diff) | |
download | hypervideo-pre-a5029645aed1557ab6bf4cde3e70e10fc9917693.tar.lz hypervideo-pre-a5029645aed1557ab6bf4cde3e70e10fc9917693.tar.xz hypervideo-pre-a5029645aed1557ab6bf4cde3e70e10fc9917693.zip |
Remove debugging print statements
-rw-r--r-- | youtube_dlc/YoutubeDL.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py index d2d100850..dbf8915d0 100644 --- a/youtube_dlc/YoutubeDL.py +++ b/youtube_dlc/YoutubeDL.py @@ -120,7 +120,6 @@ class ArchiveTree(object): self.line = line def at_insert(self, line): - print("at_insert: ", line) if self.line: if line < self.line: if self.left is None: @@ -136,7 +135,6 @@ class ArchiveTree(object): self.line = line def at_exist(self, line): - print("at_exist: ", line) if self.line is None: return False if line < self.line: |