about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-11 18:07:12 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-11 18:15:15 +0100
commitf36f92f4da3664f7286b8b4327ac5791fb98e5b2 (patch)
tree673c5548b058fdb57b2691eed35d1e18092e3018
parent124f3bc67d61adeb4dc257eb8a678df821c27314 (diff)
downloadyoutube-dl-f36f92f4da3664f7286b8b4327ac5791fb98e5b2.tar.gz
youtube-dl-f36f92f4da3664f7286b8b4327ac5791fb98e5b2.tar.xz
youtube-dl-f36f92f4da3664f7286b8b4327ac5791fb98e5b2.zip
[aes] style: Put __all__ variable at the end of the file
-rw-r--r--youtube_dl/aes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/aes.py b/youtube_dl/aes.py
index 5efd0f836..07224d508 100644
--- a/youtube_dl/aes.py
+++ b/youtube_dl/aes.py
@@ -1,7 +1,5 @@
 from __future__ import unicode_literals
 
-__all__ = ['aes_encrypt', 'key_expansion', 'aes_ctr_decrypt', 'aes_cbc_decrypt', 'aes_decrypt_text']
-
 import base64
 from math import ceil
 
@@ -329,3 +327,5 @@ def inc(data):
             data[i] = data[i] + 1
             break
     return data
+
+__all__ = ['aes_encrypt', 'key_expansion', 'aes_ctr_decrypt', 'aes_cbc_decrypt', 'aes_decrypt_text']