~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/text.py

remove all trailing whitespace from bzr source

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    def _add_compressed(self, fn, f):
45
45
        from cStringIO import StringIO
46
46
        from bzrlib.osutils import pumpfile
47
 
        
 
47
 
48
48
        if isinstance(f, basestring):
49
49
            f = StringIO(f)
50
 
            
 
50
 
51
51
        sio = StringIO()
52
52
        gf = gzip.GzipFile(mode='wb', fileobj=sio)
53
53
        # if pumpfile handles files that don't fit in ram,