aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/make_contributing.py
diff options
context:
space:
mode:
Diffstat (limited to 'devscripts/make_contributing.py')
-rwxr-xr-xdevscripts/make_contributing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devscripts/make_contributing.py b/devscripts/make_contributing.py
index f18de0560..5a068c90c 100755
--- a/devscripts/make_contributing.py
+++ b/devscripts/make_contributing.py
@@ -11,7 +11,7 @@ def main():
options, args = parser.parse_args()
if len(args) != 2:
parser.error('Expected an input and an output filename')
-
+'''
infile, outfile = args
with io.open(infile, encoding='utf-8') as inf:
@@ -27,7 +27,7 @@ def main():
with io.open(outfile, 'w', encoding='utf-8') as outf:
outf.write(out)
-
+'''
if __name__ == '__main__':
main()