mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Fix bug in the mutex gdb printer.
This commit is contained in:
parent
c552d79774
commit
c81a88057c
@ -43,7 +43,7 @@ class IcingaMutexPrinter:
|
||||
if owner == 0:
|
||||
return '<unlocked>'
|
||||
else:
|
||||
return '<locked by #' + owner + '>'
|
||||
return '<locked by #' + str(owner) + '>'
|
||||
|
||||
def lookup_icinga_type(val):
|
||||
t = val.type.unqualified()
|
||||
|
Loading…
x
Reference in New Issue
Block a user