fixed shebang
Browse files- pytube/__init__.py +1 -1
- tests/test_pytube.py +1 -1
- tests/test_utils.py +1 -1
pytube/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#!/usr/bin/env
|
2 |
# -*- coding: utf-8 -*-
|
3 |
# flake8: noqa
|
4 |
__title__ = 'pytube'
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
# -*- coding: utf-8 -*-
|
3 |
# flake8: noqa
|
4 |
__title__ = 'pytube'
|
tests/test_pytube.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#!/usr/bin/env
|
2 |
# -*- coding: utf-8 -*-
|
3 |
from __future__ import unicode_literals
|
4 |
import warnings
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
# -*- coding: utf-8 -*-
|
3 |
from __future__ import unicode_literals
|
4 |
import warnings
|
tests/test_utils.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#!/usr/bin/env
|
2 |
# -*- coding: utf-8 -*-
|
3 |
from __future__ import unicode_literals
|
4 |
from nose.tools import eq_
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
# -*- coding: utf-8 -*-
|
3 |
from __future__ import unicode_literals
|
4 |
from nose.tools import eq_
|