Ticket #4259: mythburn.py.diff

File mythburn.py.diff, 481 bytes (added by ido_roseman@…, 16 years ago)

patch for hebrew rendering in mythburn script

  • mythburn.py

     
    6262from fcntl import ioctl
    6363import CDROM
    6464from shutil import copy
     65import pyfribidi
    6566
    6667# media types (should match the enum in mytharchivewizard.h)
    6768DVD_SL = 0
     
    968969            finished = True
    969970    tmp = []
    970971    for i in lines:
    971         tmp.append( ' '.join(i) )
     972        tmp.append( pyfribidi.log2vis(' '.join(i)) )
    972973    lines = tmp
    973974    return lines