aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/utils.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-17 00:06:41 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-17 00:06:41 +0100
commit7af808a5ef4cc17ca30c8c4636660589e0e915ec (patch)
tree013daad2c72dec20b2bb19ab9121eec189ca37a1 /youtube_dl/utils.py
parent876bef5937526c6132fc22fab461d41bbf79014b (diff)
downloadyoutube-dl-7af808a5ef4cc17ca30c8c4636660589e0e915ec.tar.xz
Improve code style
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index f9938616d..43b7c94ba 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -363,7 +363,7 @@ def encodeArgument(s):
if not isinstance(s, compat_str):
# Legacy code that uses byte strings
# Uncomment the following line after fixing all post processors
- #assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
+ # assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
s = s.decode('ascii')
return encodeFilename(s, True)