Skip to content

Commit

Permalink
Handle the setting not existing betterer
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Mar 9, 2018
1 parent a949fef commit 3279de3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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>3.3.1.1281</string>
<string>3.3.1.1284</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion server/plugins/cryptstatus/cryptstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def widget_content(self, page, machines=None, theid=None):

t = loader.get_template('cryptstatus/templates/cryptstatus.html')

crypt_url = utils.get_setting('crypt_url', '').rstrip()
crypt_url = utils.get_setting('crypt_url', None).rstrip()
machine_url = crypt_url

try:
Expand Down

0 comments on commit 3279de3

Please sign in to comment.