##// END OF EJS Templates
Relocated non-mercurial imports before Mercurial ones, to perform them...
Marcin Kasperski -
r225:2d48fd11 default
parent child Browse files
Show More
@@ -51,6 +51,13 b' backend (by default keyring guesses, usu'
51 you get KDE Wallet under KDE, and Gnome Keyring under Gnome or Unity).
51 you get KDE Wallet under KDE, and Gnome Keyring under Gnome or Unity).
52 '''
52 '''
53
53
54 import urllib2
55 import smtplib
56 import socket
57 import os
58 import sys
59 import re
60
54 from mercurial import util, sslutil
61 from mercurial import util, sslutil
55 from mercurial.i18n import _
62 from mercurial.i18n import _
56 from mercurial.url import passwordmgr
63 from mercurial.url import passwordmgr
@@ -58,13 +65,6 b' from mercurial import mail'
58 from mercurial.mail import SMTPS, STARTTLS
65 from mercurial.mail import SMTPS, STARTTLS
59 from mercurial import encoding
66 from mercurial import encoding
60
67
61 import urllib2
62 import smtplib
63 import socket
64 import os
65 import sys
66 import re
67
68 # pylint: disable=invalid-name, line-too-long, protected-access, too-many-arguments
68 # pylint: disable=invalid-name, line-too-long, protected-access, too-many-arguments
69
69
70 ###########################################################################
70 ###########################################################################
@@ -140,7 +140,6 b' def import_keyring():'
140 meu.disable_logging("keyring")
140 meu.disable_logging("keyring")
141 return mod
141 return mod
142
142
143
144 #################################################################
143 #################################################################
145 # Actual implementation
144 # Actual implementation
146 #################################################################
145 #################################################################
General Comments 0
You need to be logged in to leave comments. Login now