Skip to content

Commit ed64e70

Browse files
committed
Fix variable referenced before assignment.
Signed-off-by: Jordan Borean <[email protected]>
1 parent a85972e commit ed64e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gssapi/raw/misc.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ class GSSError(Exception, metaclass=GSSErrorRegistry):
309309
msg, ctx, cont = _display_status(code, is_maj,
310310
message_context=ctx)
311311
res.append(msg.decode(msg_encoding))
312-
except ValueError:
312+
except ValueError as e:
313313
res.append(u'{0} Decoding code: {1}'.format(e, code))
314314
cont = False
315315

0 commit comments

Comments
 (0)