Passed autopep8

This commit is contained in:
Sergio Costas 2017-01-06 19:36:01 +01:00
parent 27828d2dc5
commit fdf7f148c1
45 changed files with 3541 additions and 3338 deletions

View file

@ -15,22 +15,23 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
from gi.repository import Gtk,Gdk
from gi.repository import Gtk, Gdk
import os
import devedeng.configuration_data
class end_window:
def __init__(self):
self.config = devedeng.configuration_data.configuration.get_config()
def run(self,time_used, do_burn):
def run(self, time_used, do_burn):
builder = Gtk.Builder()
builder.set_translation_domain(self.config.gettext_domain)
builder.add_from_file(os.path.join(self.config.glade,"wdone.ui"))
builder.add_from_file(os.path.join(self.config.glade, "wdone.ui"))
builder.connect_signals(self)
werror_window = builder.get_object("done")
wburn = builder.get_object("button_burn")
@ -43,10 +44,10 @@ class end_window:
time_used_str = ""
if hours < 10:
time_used_str += "0"
time_used_str += str(hours)+":"
time_used_str += str(hours) + ":"
if minutes < 10:
time_used_str += "0"
time_used_str += str(minutes)+":"
time_used_str += str(minutes) + ":"
if seconds < 10:
time_used_str += "0"
time_used_str += str(seconds)
@ -62,14 +63,13 @@ class end_window:
retval = werror_window.run()
werror_window.destroy()
if retval == 1:
return True # burn disc image
return True # burn disc image
else:
return False
def on_copy_clicked(self,b):
def on_copy_clicked(self, b):
clipboard = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD)
data =self.config.get_log()
clipboard.set_text(data,len(data))
data = self.config.get_log()
clipboard.set_text(data, len(data))
return