Changed input handler shebang lines to use explicit python2 instead of python. Cant switch to python3 because of msodump anyway

This commit is contained in:
Jean-Francois Dockes 2017-04-09 04:09:02 +02:00
parent 9d95de032d
commit 06e8424048
27 changed files with 27 additions and 27 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# 7-Zip file filter for Recoll # 7-Zip file filter for Recoll

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Audio tag filter for Recoll, using mutagen # Audio tag filter for Recoll, using mutagen

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import print_function from __future__ import print_function

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2016 J.F.Dockes # Copyright (C) 2016 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
from __future__ import print_function from __future__ import print_function
import rclexecm import rclexecm

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
"""Extract Html content from an EPUB file (.chm)""" """Extract Html content from an EPUB file (.chm)"""
from __future__ import print_function from __future__ import print_function

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
"""Extract Html content from an EPUB file (.chm), concatenating all sections""" """Extract Html content from an EPUB file (.chm), concatenating all sections"""
from __future__ import print_function from __future__ import print_function

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
from __future__ import print_function from __future__ import print_function
# Read an ICS file, break it into "documents" which are events, todos, # Read an ICS file, break it into "documents" which are events, todos,

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Python-based Image Tag extractor for Recoll. This is less thorough # Python-based Image Tag extractor for Recoll. This is less thorough
# than the Perl-based rclimg script, but useful if you don't want to # than the Perl-based rclimg script, but useful if you don't want to

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Read a file in GNU info format and output its nodes as subdocs, # Read a file in GNU info format and output its nodes as subdocs,
# interfacing with recoll execm # interfacing with recoll execm

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
"""Try to guess a text's language and character set by checking how it matches lists of """Try to guess a text's language and character set by checking how it matches lists of
common words. This is not a primary method of detection because it's slow and unreliable, but it common words. This is not a primary method of detection because it's slow and unreliable, but it
may be a help in discrimating, for exemple, before european languages using relatively close may be a help in discrimating, for exemple, before european languages using relatively close

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2015 J.F.Dockes # Copyright (C) 2015 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2014 J.F.Dockes # Copyright (C) 2014 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# -*- coding: iso-8859-1 -*- # -*- coding: iso-8859-1 -*-
""" """
MoinMoin - Python source parser and colorizer MoinMoin - Python source parser and colorizer

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Rar file filter for Recoll # Rar file filter for Recoll
# Adapted from the Zip archive filter by mroark. # Adapted from the Zip archive filter by mroark.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
from __future__ import print_function from __future__ import print_function
import rclexecm import rclexecm

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2014 J.F.Dockes # Copyright (C) 2014 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2014 J.F.Dockes # Copyright (C) 2014 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2014 J.F.Dockes # Copyright (C) 2014 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Tar-file filter for Recoll # Tar-file filter for Recoll
# Thanks to Recoll user Martin Ziegler # Thanks to Recoll user Martin Ziegler

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Wrapping a text file. Recoll does it internally in most cases, but # Wrapping a text file. Recoll does it internally in most cases, but
# this is for use by another filter. # this is for use by another filter.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
"""Index text lines as document (execm handler sample). This exists """Index text lines as document (execm handler sample). This exists
to demonstrate the execm interface and is not meant to be useful or to demonstrate the execm interface and is not meant to be useful or
efficient""" efficient"""

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
from __future__ import print_function from __future__ import print_function
import rclexecm import rclexecm

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# WAR web archive filter for recoll. War file are gzipped tar files # WAR web archive filter for recoll. War file are gzipped tar files

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2014 J.F.Dockes # Copyright (C) 2014 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2016 J.F.Dockes # Copyright (C) 2016 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (C) 2014 J.F.Dockes # Copyright (C) 2014 J.F.Dockes
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by