Merge parts of /dists/sid/linux-2.6.

svn path=/dists/trunk/linux-2.6/; revision=13755
This commit is contained in:
Bastian Blank 2009-06-10 10:32:24 +00:00
parent b22c88ae24
commit 539d0062c3
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class GenPatch(object):
if f.close() is not None:
raise RuntimeError
f = os.popen("cd %s; git log --pretty=oneline -r %s..%s^" % (self.repo, tag_in, tag_out))
f = os.popen("cd %s; git log --oneline --reverse %s..%s^" % (self.repo, tag_in, tag_out))
out = file(os.path.join(self.path, log), 'w')
out.write(" * Add stable release %s:\n" % self.version.complete)
for line in f: