/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/chunk_writer.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-11 04:08:32 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181111040832-nsljjynzzwmznf3h
Run autopep8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
              could not fit.
134
134
            * num_nulls_needed: How many nulls are padded at the end
135
135
        """
136
 
        self.bytes_in = None # Free the data cached so far, we don't need it
 
136
        self.bytes_in = None  # Free the data cached so far, we don't need it
137
137
        out = self.compressor.flush(Z_FINISH)
138
138
        self.bytes_list.append(out)
139
139
        self.bytes_out_len += len(out)
275
275
                    self.bytes_list = bytes_out
276
276
                    self.bytes_out_len = this_len
277
277
        return False
278