Skip to content
Snippets Groups Projects
Commit bba647b6 authored by Eric S. Raymond's avatar Eric S. Raymond
Browse files

Add compatibility note.

parent b12f8c37
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python #!/usr/bin/env python
# Copyright (c) 2012 Eric S. Raymond <esr@thyrsus.com> # Copyright (c) 2012 Eric S. Raymond <esr@thyrsus.com>
# Distributed under BSD terms. # SPDX-License-Identifier: BSD-2-Clause
# #
# This script contains git porcelain and porcelain byproducts. # This script contains git porcelain and porcelain byproducts.
# Requires Python 2.6, or 2.5 with the simplejson library installed. # Requires either Python 2.6, or 2.5 with the simplejson library installed
# or Python 3.x.
# #
# usage: irkerhook.py [-V] [-n] [--variable=value...] [commit_id...] # usage: irkerhook.py [-V] [-n] [--variable=value...] [commit_id...]
# #
...@@ -13,6 +14,7 @@ ...@@ -13,6 +14,7 @@
# #
# See the irkerhook manual page in the distribution for a detailed # See the irkerhook manual page in the distribution for a detailed
# explanation of how to configure this hook. # explanation of how to configure this hook.
from __future__ import print_function
# The default location of the irker proxy, if the project configuration # The default location of the irker proxy, if the project configuration
# does not override it. # does not override it.
...@@ -573,4 +575,7 @@ if __name__ == "__main__": ...@@ -573,4 +575,7 @@ if __name__ == "__main__":
for commit in commits: for commit in commits:
ship(extractor, commit, not notify) ship(extractor, commit, not notify)
#End # The following sets edit modes for GNU EMACS
# Local Variables:
# mode:python
# End:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment