We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88dd87e commit 0a5a843Copy full SHA for 0a5a843
octoprint_mrbeam/analytics/usage_handler.py
@@ -398,6 +398,7 @@ def _repair_backup_usage_data(self):
398
with open(self._backup_file, "r") as stream:
399
data = yaml.load(stream)
400
if self._validate_data(data):
401
+ #checks if the version is saved in unicode and converts it into a string see SW-1269
402
if isinstance(data["version"], unicode):
403
data["version"] = unicodedata.normalize('NFKD', data["version"]).encode('ascii', 'ignore')
404
data["restored"] = (
0 commit comments