~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/text.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-07 10:41:30 UTC
  • mfrom: (4230.1.2 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20090407104130-ka3rxokxvi9yfbck
Include the msgeditor hooks in known_hooks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
        # so buffer them in a StringIO instead
119
119
        if getattr(f, 'tell', None) is not None:
120
120
            return gzip.GzipFile(mode='rb', fileobj=f)
121
 
        try:
 
121
        else:
122
122
            from cStringIO import StringIO
123
123
            sio = StringIO(f.read())
124
124
            return gzip.GzipFile(mode='rb', fileobj=sio)
125
 
        finally:
126
 
            f.close()