~ps-jenkins/friends/latestsnapshot-0.2.0+13.10.20130627-0ubuntu1

« back to all changes in this revision

Viewing changes to friends/utils/authentication.py

  • Committer: Tarmac
  • Author(s): Robert Bruce Park
  • Date: 2013-06-20 03:49:01 UTC
  • mfrom: (207.2.1 threads_init)
  • Revision ID: tarmac-20130620034901-ptfdrp7ot5du2u4k
Stop calling deprecated GObject.threads_init().

Approved by PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import logging
24
24
import time
25
25
 
26
 
from gi.repository import GObject, Accounts, Signon
 
26
from gi.repository import Accounts, Signon
27
27
 
28
28
from friends.errors import AuthorizationError
29
29
 
30
30
 
31
 
GObject.threads_init()
32
 
 
33
 
 
34
31
log = logging.getLogger(__name__)
35
32
 
36
33