diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-06 21:10:09 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-08 00:47:56 +0100 |
commit | 51364f7bea78f27820c67bf83a8e62ca593d61bb (patch) | |
tree | fd26f69fa343aef218637f9f3b46e2ed2b2abe0c /src/roster.py | |
parent | 32a75fd5c746ba6080f43ef56be361deb2e3bad3 (diff) | |
download | poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.gz poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.bz2 poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.xz poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.zip |
Code cleanup (unused import, variables, undefined names, etc…)
Diffstat (limited to 'src/roster.py')
-rw-r--r-- | src/roster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roster.py b/src/roster.py index 4ef2da1b..df84d4d8 100644 --- a/src/roster.py +++ b/src/roster.py @@ -14,7 +14,7 @@ log = logging.getLogger(__name__) from config import config from os import path as p -from contact import Contact, Resource +from contact import Contact from sleekxmpp.xmlstream.stanzabase import JID class Roster(object): |