Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
from os import path
from random import randint
from subprocess import call
from subprocess import getoutput as shell
try:
from subprocess import getoutput as shell
except ImportError:
from commands import getoutput as shell
from sys import exit
from threading import Thread
from time import sleep
Expand Down