Show
Ignore:
Timestamp:
08/17/08 15:19:39 (4 months ago)
Author:
Jonny Lamb <jonnylamb@…>
Parents:
6743f68457b7c15796432836bce3918cd8fd907a
Children:
d9ffc7e53b1210c740693d1de2b0143921114cc2
git-committer:
Jonny Lamb <jonnylamb@jonnylamb.com> / 2008-08-17T14:19:39Z+0100
Message:

Removed DecodingFile? class; it doesn't fix the unicode problem.

Signed-off-by: Jonny Lamb <jonnylamb@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • debexpo/plugins/getorigtarball.py

    r11b680 r63e947  
    4343from debexpo.lib import constants 
    4444from debexpo.lib.base import * 
    45 from debexpo.lib.utils import md5sum, DecodingFile 
     45from debexpo.lib.utils import md5sum 
    4646from debexpo.plugins import BasePlugin 
    4747 
     
    5555        actually in the package upload. 
    5656        """ 
    57         dsc = deb822.Dsc(DecodingFile(self.changes.get_dsc())) 
     57        dsc = deb822.Dsc(file(self.changes.get_dsc())) 
    5858 
    5959        orig = None