Skip to content

Commit

Permalink
dns/ddclient - fix logic issue in 7c6fccd (#3618)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdSchellevis committed Nov 7, 2023
1 parent 9b0f5ed commit f6f72bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dns/ddclient/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PLUGIN_NAME= ddclient
PLUGIN_VERSION= 1.16
PLUGIN_REVISION= 1
PLUGIN_REVISION= 2
PLUGIN_DEPENDS= ddclient-devel py${PLUGIN_PYTHON}-boto3
PLUGIN_COMMENT= Dynamic DNS client
PLUGIN_MAINTAINER= [email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def execute(self):
}
req = requests.get(**req_opts)

if 200 >= req.status_code < 300:
if 200 <= req.status_code < 300:
if self.is_verbose:
syslog.syslog(
syslog.LOG_NOTICE,
Expand Down

0 comments on commit f6f72bb

Please sign in to comment.