remove comment header generation

The validation command is not able to handle that and I'm not sure
if it is really worth fixing that.

Change-Id: I8abc66143333522b77ab4ff6b2fef66bc707a36a
This commit is contained in:
Dirk Mueller 2017-02-22 16:34:30 +01:00
parent 11451ce1b1
commit e04ec4896c

View File

@ -19,7 +19,6 @@ import optparse
import os.path
import subprocess
import sys
import textwrap
import fixtures
@ -229,12 +228,6 @@ def main(argv=None, stdout=None):
_freeze(options.requirements, python) for python in options.pythons]
_clone_versions(freezes, options)
blacklist = _parse_blacklist(options.blacklist)
stdout.write(textwrap.dedent('''\
# This file is automatically generated using a sort order
# intended to reduce collisions when individual lines are
# updated in separate patches.
#
'''))
frozen = sorted(_combine_freezes(freezes, blacklist), key=_make_sort_key)
stdout.writelines(frozen)
stdout.flush()