aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__main__.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-02-14 15:37:17 +0600
committerSergey M․ <dstftw@gmail.com>2016-02-14 15:37:17 +0600
commit611c1dd96efc36a788475e14cc4de64d554d28a0 (patch)
tree4ac501e07c6ab8281c22de2d0ec577561e32465c /youtube_dl/__main__.py
parentd800609c62703e4e6edd2891a8432306462e4db3 (diff)
downloadyoutube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.tar.xz
[refactor] Single quotes consistency
Diffstat (limited to 'youtube_dl/__main__.py')
-rwxr-xr-xyoutube_dl/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__main__.py b/youtube_dl/__main__.py
index 42a0f8c6f..138f5fbec 100755
--- a/youtube_dl/__main__.py
+++ b/youtube_dl/__main__.py
@@ -7,7 +7,7 @@ from __future__ import unicode_literals
import sys
-if __package__ is None and not hasattr(sys, "frozen"):
+if __package__ is None and not hasattr(sys, 'frozen'):
# direct call of __main__.py
import os.path
path = os.path.realpath(os.path.abspath(__file__))