Skip to content

Commit

Permalink
Make the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Nov 7, 2024
1 parent 3bd597b commit d0d2bda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docker/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@
}

logging_config = get_sal_logging_config()
level = "DEBUG" if DEBUG == True else "ERROR"
if DEBUG:
level = "DEBUG"
else:
level = "ERROR"
logging_config["loggers"]["djangosaml2"] = {
"propagate": False,
"handlers": ["console"],
Expand Down
2 changes: 1 addition & 1 deletion sal/version.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>version</key>
<string>4.4.0.2305</string>
<string>4.4.0.2306</string>
</dict>
</plist>

0 comments on commit d0d2bda

Please sign in to comment.