Rev 5088: We should use the specific 'version' field. in http://bzr.arbash-meinel.com/branches/bzr/lp/2.2.0b2-contained-pack

John Arbash Meinel john at arbash-meinel.com
Fri Mar 5 20:04:43 GMT 2010


At http://bzr.arbash-meinel.com/branches/bzr/lp/2.2.0b2-contained-pack

------------------------------------------------------------
revno: 5088
revision-id: john at arbash-meinel.com-20100305200410-xnbelm0j3u7ew7xy
parent: john at arbash-meinel.com-20100305200318-403egkuei1iiv0zt
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: 2.2.0b2-contained-pack
timestamp: Fri 2010-03-05 14:04:10 -0600
message:
  We should use the specific 'version' field.
-------------- next part --------------
=== modified file 'bzrlib/sack.py'
--- a/bzrlib/sack.py	2010-03-05 20:03:18 +0000
+++ b/bzrlib/sack.py	2010-03-05 20:04:10 +0000
@@ -118,7 +118,7 @@
         #       rather than wasting a round-trip...
         _, tail = transport.readv(filename, [(file_st.st_size-12, 12)]).next()
         start_offset, version = TrailingIndex.parse_tail_bytes(tail)
-        expected_header = '%s%d\n' % (_HEADER_BASE, _VERSION)
+        expected_header = '%s%d\n' % (_HEADER_BASE, version)
         _, tail = transport.readv(filename,
             [(start_offset, file_st.st_size - start_offset)]).next()
         assert tail.startswith(expected_header)



More information about the bazaar-commits mailing list