Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.4

0.9.4 objects.py: mergetag value parsing should not gobble up all remaining lines as it breaks "extra" key-value pairs with empty keys (see test_evil_git_extras)

Changeset 555ff65bcfa9

Parent e63fffff461a

by Profile picture of User 138Hao Lian <hao@fogcreek.com>

Changes to one file · Browse files at 555ff65bcfa9 Showing diff from parent e63fffff461a Diff from another changeset...

 
596
597
598
599
 
600
601
602
 
596
597
598
 
599
600
601
602
@@ -596,7 +596,7 @@
  k = None   v = ""   for l in f: - if l.startswith(" "): + if l.startswith(" ") and k == 'mergetag':   v += l[1:]   else:   if k is not None: