diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-09 20:37:39 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-09 20:37:39 +0000 |
commit | 7fd6153720746edff4af900dc9c3579d3cde6e32 (patch) | |
tree | 41a6053716e059f24a9e4b9e3b935c28dac940c3 /src/connection.py | |
parent | df6d2fc2d3aa8b6ea396e96acddf6b695ec35197 (diff) | |
download | poezio-7fd6153720746edff4af900dc9c3579d3cde6e32.tar.gz poezio-7fd6153720746edff4af900dc9c3579d3cde6e32.tar.bz2 poezio-7fd6153720746edff4af900dc9c3579d3cde6e32.tar.xz poezio-7fd6153720746edff4af900dc9c3579d3cde6e32.zip |
fix some little issues. Rename gui to core, use logging lib instead of the custom debug option. Add a -d option
Diffstat (limited to 'src/connection.py')
-rw-r--r-- | src/connection.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/connection.py b/src/connection.py index 2e74e4e1..2f016901 100644 --- a/src/connection.py +++ b/src/connection.py @@ -58,3 +58,6 @@ class Connection(sleekxmpp.ClientXMPP): else: self.connect() self.process(threaded=True) + +# Global connection object +connection = Connection() |