Skip to content
Snippets Groups Projects
Commit f0dce41a authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix string exceptions

parent 5eb402ba
No related branches found
No related tags found
No related merge requests found
......@@ -401,7 +401,7 @@ class EncryptedStanzaSession(StanzaSession):
pubkey_o = xmpp.c14n.c14n(keyvalue)
else:
# XXX DSA, etc.
raise 'unimplemented'
raise NotImplementedError()
enc_sig = parsed.getTag(name='SignatureValue',
namespace=XmlDsig).getData()
......
......@@ -120,7 +120,7 @@ class Browser(PlugIn):
elif set_ or '' in cur: return cur,''
else: return None,None
if 1 in cur or set_: return cur,1
raise "Corrupted data"
raise Exception("Corrupted data")
def setDiscoHandler(self,handler,node='',jid=''):
""" This is the main method that you will use in this class.
......
......@@ -175,8 +175,7 @@ class Debug:
self._fh = sys.stdout
if time_stamp not in (0,1,2):
msg2 = '%s' % time_stamp
raise 'Invalid time_stamp param', msg2
raise Exception('Invalid time_stamp param "%s"' % str(time_stamp))
self.prefix = prefix
self.sufix = sufix
self.time_stamp = time_stamp
......@@ -198,12 +197,8 @@ class Debug:
if type(flag_show) in (str, type(None)):
self.flag_show = flag_show
else:
msg2 = '%s' % type(flag_show )
raise 'Invalid type for flag_show!', msg2
raise Exception('Invalid type "%s" for flag_show!' % \
type(flag_show))
def show( self, msg, flag = None, prefix = None, sufix = None,
lf = 0 ):
......@@ -341,7 +336,8 @@ class Debug:
"""filter out any dupes."""
if not isinstance(item, str):
msg2 = '%s' % item
raise 'Invalid item type (should be string)',msg2
raise Exception('Invalid item type "%s", should be string' % \
type(item))
if item not in lst:
lst.append( item )
return lst
......@@ -353,7 +349,7 @@ class Debug:
for f in self._as_one_list( flags ):
if not f in self.debug_flags:
msg2 = '%s' % f
raise 'Invalid debugflag given', msg2
raise Exception('Invalid debugflag "%s" given' % f)
def _remove_dupe_flags( self ):
"""
......
......@@ -317,12 +317,16 @@ class Session:
def start_feature(self,f):
""" Declare some feature as "negotiating now" to prevent other features from start negotiating. """
if self.feature_in_process: raise "Starting feature %s over %s !"%(f,self.feature_in_process)
if self.feature_in_process:
raise Exception("Starting feature %s over %s !" % (f,
self.feature_in_process)
self.feature_in_process=f
def stop_feature(self,f):
""" Declare some feature as "negotiated" to allow other features start negotiating. """
if self.feature_in_process!=f: raise "Stopping feature %s instead of %s !"%(f,self.feature_in_process)
if self.feature_in_process != f:
raise Exception("Stopping feature %s instead of %s !" % (f,
self.feature_in_process)
self.feature_in_process=None
def set_socket_state(self,newstate):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment