homey-lib 2.44.2 → 2.44.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/App/index.js +1 -1
- package/package.json +1 -1
- package/webpack/index.js +1 -1
package/lib/App/index.js
CHANGED
|
@@ -216,7 +216,7 @@ class App {
|
|
|
216
216
|
const minVersion = semver.minVersion(appJson.compatibility);
|
|
217
217
|
// tmp set to 12.11.1
|
|
218
218
|
if (!semver.gte(minVersion, '12.11.1')) {
|
|
219
|
-
throw new Error(`Invalid compatibility (${appJson.compatibility}), Python apps must have a compatibility of at least >=
|
|
219
|
+
throw new Error(`Invalid compatibility (${appJson.compatibility}), Python apps must have a compatibility of at least >=12.11.1`);
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
|