Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gajim
gajim
Commits
b43d9ffd
Commit
b43d9ffd
authored
Jun 27, 2006
by
sb
Browse files
fix module imports (woops :)
parent
22c02ee2
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/common/zeroconf/client_zeroconf.py
View file @
b43d9ffd
from
common
import
roster_zeroconf
from
common
.zeroconf
import
roster_zeroconf
class
ClientZeroconf
:
def
__init__
(
self
,
zeroconf
):
...
...
src/common/zeroconf/connection_handlers_zeroconf.py
View file @
b43d9ffd
...
...
@@ -26,7 +26,7 @@
from
calendar
import
timegm
import
socks5
#
import socks5
import
common.xmpp
from
common
import
GnuPG
...
...
src/common/zeroconf/connection_zeroconf.py
View file @
b43d9ffd
...
...
@@ -39,9 +39,9 @@
from
common
import
helpers
from
common
import
gajim
from
common
import
GnuPG
from
common
import
zeroconf
from
common
import
connection_handlers_zeroconf
from
common
import
client_zeroconf
from
common
.zeroconf
import
zeroconf
from
common
.zeroconf
import
connection_handlers_zeroconf
from
common
.zeroconf
import
client_zeroconf
from
connection_handlers_zeroconf
import
*
USE_GPG
=
GnuPG
.
USE_GPG
...
...
src/common/zeroconf/roster_zeroconf.py
View file @
b43d9ffd
from
common
import
zeroconf
from
common
.zeroconf
import
zeroconf
class
Roster
:
def
__init__
(
self
,
zeroconf
):
...
...
src/gajim.py
View file @
b43d9ffd
...
...
@@ -39,7 +39,7 @@
from
common
import
exceptions
from
common
import
i18n
from
common
import
connection_zeroconf
from
common
.zeroconf
import
connection_zeroconf
i18n
.
init
()
_
=
i18n
.
_
...
...
@@ -1741,7 +1741,7 @@ def __init__(self):
self
.
register_handlers
()
for
account
in
gajim
.
config
.
get_per
(
'accounts'
):
if
account
==
'zeroconf'
:
gajim
.
connections
[
account
]
=
common
.
connection_zeroconf
.
ConnectionZeroconf
(
account
)
gajim
.
connections
[
account
]
=
common
.
zeroconf
.
connection_zeroconf
.
ConnectionZeroconf
(
account
)
else
:
gajim
.
connections
[
account
]
=
common
.
connection
.
Connection
(
account
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment