Browse Source

Include licensing information in acme_tiny.py itself

Many people simply copy the acme_tiny.py script, meaning they
lose the licensing information that is included in a separate file.

This adds one extra comment line to the top of the file stating
who the copyright owner is, and what license it is under.
Kunal Mehta 9 years ago
parent
commit
25ad03a24f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      acme_tiny.py

+ 1 - 0
acme_tiny.py

@@ -1,4 +1,5 @@
 #!/usr/bin/env python
 #!/usr/bin/env python
+# Copyright (c) 2015 Daniel Roesler, under the MIT license. See LICENSE for more details.
 import argparse, subprocess, json, os, sys, base64, binascii, time, hashlib, re, copy, textwrap, logging
 import argparse, subprocess, json, os, sys, base64, binascii, time, hashlib, re, copy, textwrap, logging
 try:
 try:
     from urllib.request import urlopen # Python 3
     from urllib.request import urlopen # Python 3