[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ftp-team/dak][master] 2 commits: pdiff.py: Remember the .gz extension on writing the Index file



Title: GitLab

Joerg Jaspert pushed to branch master at Debian FTP Team / dak

Commits:

1 changed file:

Changes:

  • daklib/pdiff.py
    ... ... @@ -220,7 +220,7 @@ class PDiffIndex(object):
    220 220
                 out.write("%s:\n" % fieldname)
    
    221 221
                 for h in order:
    
    222 222
                     if hs[h][ind] and hs[h][ind][hashind]:
    
    223
    -                    out.write(" %s %7d %s\n" % (hs[h][ind][hashind], hs[h][ind].size, h))
    
    223
    +                    out.write(" %s %7d %s.gz\n" % (hs[h][ind][hashind], hs[h][ind].size, h))
    
    224 224
     
    
    225 225
         def update_index(self, tmp_suffix=".new"):
    
    226 226
             if not os.path.isdir(self.patches_dir):
    


  • Reply to: