Skip to content

Commit 6b70b2c

Browse files
fix(python): wrong release versioning on configuration.py
1 parent d4033fe commit 6b70b2c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

sonarr/configuration.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,6 @@ def auth_settings(self):
399399
}
400400
return auth
401401

402-
# x-release-please-start-version$
403402
def to_debug_report(self):
404403
"""Gets the essential information for debugging.
405404
@@ -409,10 +408,9 @@ def to_debug_report(self):
409408
"OS: {env}\n"\
410409
"Python Version: {pyversion}\n"\
411410
"Version of the API: v4.0.1.929\n"\
412-
"SDK Package Version: 0.10.0".\
413-
format(env=sys.platform, pyversion=sys.version)
411+
"SDK Package Version: {v}".\
412+
format(env=sys.platform, pyversion=sys.version, v="0.10.0") # x-release-please-version
414413

415-
# x-release-please-end$
416414
def get_host_settings(self):
417415
"""Gets an array of host settings
418416

0 commit comments

Comments
 (0)