diff options
author | Georgi Valkov <georgi.t.valkov@gmail.com> | 2011-08-23 14:58:22 +0300 |
---|---|---|
committer | Georgi Valkov <georgi.t.valkov@gmail.com> | 2011-08-23 14:58:22 +0300 |
commit | 2770590d5a4f2cac5eb11c0b9479e51cafbe0709 (patch) | |
tree | 4e63bd7a0166ce735b5beb515d6576d4429aead3 | |
parent | e9cb9c2811ab26ef54cf410b0edc52ae56a5158e (diff) |
Use module metadata variables instead of comments
-rwxr-xr-x | youtube-dl | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/youtube-dl b/youtube-dl index 63051bb33..69ff8d9f4 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1,13 +1,18 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Author: Ricardo Garcia Gonzalez -# Author: Danny Colligan -# Author: Benjamin Johnson -# Author: Vasyl' Vavrychuk -# Author: Witold Baryluk -# Author: Paweł Paprota -# Author: Gergely Imreh -# License: Public domain code + +__author__ = ( + "Ricardo Garcia Gonzalez", + "Danny Colligan", + "Benjamin Johnson", + "Vasyl' Vavrychuk", + "Witold Baryluk", + "Paweł Paprota", + "Gergely Imreh", + ) + +__license__ = "Public Domain" + import cookielib import ctypes import datetime |