Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Feb 23, 2022
1 parent c271039 commit 65f5309
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/ddns-lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
LOGGER = logging.getLogger()
ACCOUNT = None
REGION = None
VERSION = '0.1.2'
VERSION = '0.1.3'

# Adjust the logging level [logging.INFO, logging.DEBUG, logging.WARNING, etc]
LOGGER.setLevel(logging.DEBUG)
Expand Down Expand Up @@ -1554,7 +1554,7 @@ def initialize_heritage(application_name, version='null', items={}):
:param dict(str) items: A dict of key/value pairs to set on initialization. They key of version is not permitted here.
:return dict(str): dict with the application name, version, and items ready for use
"""
if application_name != '' and application_name is not none:
if application_name != '' and application_name is not None:
return {
'application_name': str(appname),
'version': str(version),
Expand Down
Binary file modified code/ddns-lambda.zip
Binary file not shown.

0 comments on commit 65f5309

Please sign in to comment.