Change all shebangs to use python2

This commit is contained in:
Kovid Goyal 2015-01-23 19:08:21 +05:30
parent e27e3f6f55
commit ef09e886b3
1149 changed files with 1165 additions and 1165 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import with_statement from __future__ import with_statement

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import with_statement from __future__ import with_statement

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import (unicode_literals, division, absolute_import, from __future__ import (unicode_literals, division, absolute_import,
print_function) print_function)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import print_function from __future__ import print_function

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>' __author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>' __author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Gabriele Marini, based on Darko Miletic' __author__ = 'Gabriele Marini, based on Darko Miletic'
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008-2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2008-2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Gabriele Marini, based on Darko Miletic' __author__ = 'Gabriele Marini, based on Darko Miletic'
__copyright__ = '2009-2010, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009-2010, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import AutomaticNewsRecipe from calibre.web.feeds.news import AutomaticNewsRecipe

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'Creative Commons Attribution 4.0 International License' __license__ = 'Creative Commons Attribution 4.0 International License'
__author__ = 'John McDole' __author__ = 'John McDole'
__copyright__ = '' __copyright__ = ''

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2014, spswerling' __copyright__ = '2014, spswerling'

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
# encoding: utf-8 # encoding: utf-8
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Gabriele Marini, based on Darko Miletic' __author__ = 'Gabriele Marini, based on Darko Miletic'
__copyright__ = '2009-2010, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009-2010, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'teepel <teepel44@gmail.com>' __author__ = 'teepel <teepel44@gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function from __future__ import unicode_literals, division, absolute_import, print_function

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = 'Ruben Pollan <meskio@sindominio.net>' __copyright__ = 'Ruben Pollan <meskio@sindominio.net>'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = 'Copyright 2010 Starson17' __copyright__ = 'Copyright 2010 Starson17'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Bruce <bruce at dotdoh.com>' __copyright__ = '2009, Bruce <bruce at dotdoh.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
from __future__ import unicode_literals from __future__ import unicode_literals
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'GabrieleMarini, based on Darko Miletic' __author__ = 'GabrieleMarini, based on Darko Miletic'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Gabriele Marini' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Gabriele Marini'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'GabrieleMarini, based on Darko Miletic' __author__ = 'GabrieleMarini, based on Darko Miletic'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Gabriele Marini' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Gabriele Marini'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'MrStefan <mrstefaan@gmail.com>' __author__ = 'MrStefan <mrstefaan@gmail.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'teepel <teepel44@gmail.com>' __author__ = 'teepel <teepel44@gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Huan Komrade T <huantnh at gmail.com>' __copyright__ = '2009, Huan Komrade T <huantnh at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# ebook-convert.exe c:\billorielly.recipe c:\test -vv # ebook-convert.exe c:\billorielly.recipe c:\test -vv

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>' __author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Tony Stegall' __author__ = 'Tony Stegall'
__copyright__ = '2010, Tony Stegall or Tonythebookworm on mobiread.com' __copyright__ = '2010, Tony Stegall or Tonythebookworm on mobiread.com'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=utf-8 # vim:fileencoding=utf-8
from __future__ import unicode_literals from __future__ import unicode_literals

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009 Kovid Goyal <kovid at kovidgoyal.net>' __copyright__ = '2009 Kovid Goyal <kovid at kovidgoyal.net>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008-2011, Lionel Bergeret <lbergeret at gmail.com>' __copyright__ = '2008-2011, Lionel Bergeret <lbergeret at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Lorenzo Vigentini' __author__ = 'Lorenzo Vigentini'
__copyright__ = '2009, Lorenzo Vigentini <l.vigentini at gmail.com>' __copyright__ = '2009, Lorenzo Vigentini <l.vigentini at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2010, Derek Liang <Derek.liang.ca @@@at@@@ gmail.com>' __copyright__ = '2010, Derek Liang <Derek.liang.ca @@@at@@@ gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2010, Derek Liang <Derek.liang.ca @@@at@@@ gmail.com>' __copyright__ = '2010, Derek Liang <Derek.liang.ca @@@at@@@ gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
## ##
# Title: Common Dreams # Title: Common Dreams
## ##

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'DrMerry Based on v1.01 by Lorenzo Vigentini' __author__ = 'DrMerry Based on v1.01 by Lorenzo Vigentini'
__copyright__ = 'For version 1.02, 1.03: DrMerry' __copyright__ = 'For version 1.02, 1.03: DrMerry'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
## ##
## Title: Consortium News ## Title: Consortium News
## ##

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Lorenzo Vigentini, based on Darko Miletic' __author__ = 'Lorenzo Vigentini, based on Darko Miletic'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Lorenzo Vigentini <l.vigentini at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Lorenzo Vigentini <l.vigentini at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Lorenzo Vigentini, based on Darko Miletic' __author__ = 'Lorenzo Vigentini, based on Darko Miletic'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Lorenzo Vigentini <l.vigentini at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Lorenzo Vigentini <l.vigentini at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'GabrieleMarini, based on Darko Miletic' __author__ = 'GabrieleMarini, based on Darko Miletic'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Gabriele Marini' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>, Gabriele Marini'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>' __author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '''2009, Mathieu Godlewski <mathieu at godlewski.fr> __copyright__ = '''2009, Mathieu Godlewski <mathieu at godlewski.fr>

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import with_statement from __future__ import with_statement

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL 3' __license__ = 'GPL 3'
__copyright__ = 'zotzo' __copyright__ = 'zotzo'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #! /usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2014, Brandon S Allbery <allbery.b at gmail.com>' __copyright__ = '2014, Brandon S Allbery <allbery.b at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Gerardo Diez' __author__ = 'Gerardo Diez'
__copyright__ = 'Gerardo Diez<gerardo.diez.garcia@gmail.com>' __copyright__ = 'Gerardo Diez<gerardo.diez.garcia@gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2008, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2011, Nikolas Mangold <nmangold at gmail.com>' __copyright__ = '2011, Nikolas Mangold <nmangold at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008-2011, Lionel Bergeret <lbergeret at gmail.com>' __copyright__ = '2008-2011, Lionel Bergeret <lbergeret at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8 # vim:fileencoding=UTF-8
__license__ = 'GPL v3' __license__ = 'GPL v3'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = 'Ruben Pollan <meskio@sindominio.net>' __copyright__ = 'Ruben Pollan <meskio@sindominio.net>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>' __author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>' __author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'Lorenzo Vigentini' __author__ = 'Lorenzo Vigentini'
__copyright__ = '2009, Lorenzo Vigentini <l.vigentini at gmail.com>' __copyright__ = '2009, Lorenzo Vigentini <l.vigentini at gmail.com>'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2014-01-09, Silviu Cotoar\u0103, Marius Popescu' __copyright__ = u'2014-01-09, Silviu Cotoar\u0103, Marius Popescu'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = u'2011, Silviu Cotoar\u0103' __copyright__ = u'2011, Silviu Cotoar\u0103'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
__author__ = 'Darko Spasovski' __author__ = 'Darko Spasovski'
__license__ = 'GPL v3' __license__ = 'GPL v3'

Some files were not shown because too many files have changed in this diff Show More