Fixed the same buf from mkisofs in genisoimage
This commit is contained in:
parent
7173624e4a
commit
4b21a1c3aa
2 changed files with 4 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
* version 4.8.7 (2017-01-29)
|
||||
* Allows to translate the "Play all" text in the DVD menu
|
||||
* Fixed mkisofs bug with some locales
|
||||
|
||||
* version 4.8.6 (2016-12-14)
|
||||
* Now ensures that the average bitrate is never smaller than the minimum bitrate
|
||||
* Now the matroska and divx files have the right extension
|
||||
|
|
|
|||
|
|
@ -77,7 +77,9 @@ class genisoimage(devedeng.executor.executor):
|
|||
return
|
||||
|
||||
l = data[0].split("%")
|
||||
p = float(l[0])
|
||||
l0a = l[0]
|
||||
l0b = l0a.replace(",", ".")
|
||||
p = float(l0b)
|
||||
self.progress_bar[1].set_fraction(p / 100.0)
|
||||
self.progress_bar[1].set_text("%.1f%%" % (p))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue