Skip to content

Commit

Permalink
bugfix on the debug message
Browse files Browse the repository at this point in the history
nonetype can not be added to a string -> convert to str first
  • Loading branch information
jackaraz committed Jan 11, 2022
1 parent abc9c83 commit e5fa95d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion madanalysis/system/detect_simplify.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def AutoDetection(self):

# Checking release
if self.debug:
self.logger.debug(" where? = "+simplify.__file__)
self.logger.debug(" where? = " + str(simplify.__file__))

# Ok
return DetectStatusType.FOUND,''
Expand Down

0 comments on commit e5fa95d

Please sign in to comment.