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 f7ff048 commit 9ae3201Copy full SHA for 9ae3201
packages/cubejs-backend-native/src/python/entry.rs
@@ -52,7 +52,7 @@ fn python_load_config(mut cx: FunctionContext) -> JsResult<JsPromise> {
52
config_module.getattr("settings")?
53
} else {
54
return Err(PyErr::new::<PyException, String>(
55
- "Configuration file `cube.py` must define 'config' attribute. Did you forget to add import?".to_string(),
+ "`cube.py` configuration file must define the 'config' attribute. Did you forget to add the `from cube import config` import?".to_string(),
56
));
57
}
58
};
0 commit comments