~lubuntu-software-center-team/lubuntu-software-center/python3-merge

« back to all changes in this revision

Viewing changes to src/threadingops.py

Merge Python3 branch lp:~michaelrawson76/lubuntu-software-center/python-3
Thanks to Michael Rawson

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/env python3
2
2
# -*- coding:UTF-8 -*-
3
3
#       Copyright (c) Stephen Smally <stephen.smally@gmail.com>
4
4
#
19
19
from gi.repository import Gtk
20
20
from gi.repository import Pango
21
21
from gi.repository import GdkPixbuf
22
 
from ConfigParser import RawConfigParser
23
 
from notify import notify
24
 
import control
 
22
from configparser import RawConfigParser
 
23
from .notify import notify
 
24
from . import control
25
25
import os
26
26
from aptdaemon import client, gtk3widgets
27
27