Skip to content
Snippets Groups Projects
Commit fa61eade authored by Craig Tiller's avatar Craig Tiller
Browse files

Bug fix

parent 190d360d
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ for filename in subprocess.check_output('git ls-tree -r --name-only -r HEAD', ...@@ -111,7 +111,7 @@ for filename in subprocess.check_output('git ls-tree -r --name-only -r HEAD',
log(args.ancient, 'old', filename) log(args.ancient, 'old', filename)
if args.fix: if args.fix:
with open(filename, 'w') as f: with open(filename, 'w') as f:
f.write(text.replace('Copyright 2014, Google Inc.', 'Copyright 2015, Google Inc.')) f.write(text.replace('Copyright 2014, Google Inc.', 'Copyright 2015, Google Inc.') + '\n')
elif 'DO NOT EDIT' not in text and 'AssemblyInfo.cs' not in filename: elif 'DO NOT EDIT' not in text and 'AssemblyInfo.cs' not in filename:
log(1, 'missing', filename) log(1, 'missing', filename)
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