Show More
@@ -657,7 +657,14 class unbundle20(unpackermixin): | |||
|
657 | 657 | raise error.BundleValueError('negative bundle param size: %i' |
|
658 | 658 | % paramssize) |
|
659 | 659 | if paramssize: |
|
660 |
|
|
|
660 | params = self._readexact(paramssize) | |
|
661 | params = self._processallparams(params) | |
|
662 | return params | |
|
663 | ||
|
664 | def _processallparams(self, paramsblock): | |
|
665 | """""" | |
|
666 | params = {} | |
|
667 | for p in paramsblock.split(' '): | |
|
661 | 668 |
|
|
662 | 669 |
|
|
663 | 670 |
|
@@ -666,6 +673,7 class unbundle20(unpackermixin): | |||
|
666 | 673 |
|
|
667 | 674 | return params |
|
668 | 675 | |
|
676 | ||
|
669 | 677 | def _processparam(self, name, value): |
|
670 | 678 | """process a parameter, applying its effect if needed |
|
671 | 679 |
General Comments 0
You need to be logged in to leave comments.
Login now