Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-04-10 14:59:31 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-04-10 14:59:31 (GMT)
commitc9310c2220a52d05b56f9daed2ca479edba229da (patch)
treed6ddca14bbfd25165fa8bf2fa137ae5d24d74047 /services
parenta07e946cc442f998b902b39e32968d6f9ce20e62 (diff)
PS fixes; use correct type on public keys and hide invalid buddies
Diffstat (limited to 'services')
-rw-r--r--services/presence/psutils.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/services/presence/psutils.py b/services/presence/psutils.py
new file mode 100644
index 0000000..995ea3a
--- /dev/null
+++ b/services/presence/psutils.py
@@ -0,0 +1,26 @@
+# Copyright (C) 2007, Red Hat, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+def bytes_to_string(bytes):
+ # Handle both DBus byte arrays and strings
+ try:
+ # DBus Byte array
+ ret = ''.join([chr(item) for item in bytes])
+ except TypeError:
+ # Python string
+ ret = ''.join([str(item) for item in bytes])
+ return ret