diff --git a/README.md b/README.md index 3fedd34..b7cd4e6 100644 --- a/README.md +++ b/README.md @@ -108,11 +108,11 @@ to run the server in the foreground. ### Customization -* Have a look at the [available settings](settings.md) and specifiy your choices in `/etc/maloja/settings/settings.ini`. You can also set each of these settings as an environment variable with the prefix `MALOJA_` (e.g. `MALOJA_SKIP_SETUP`). +* Have a look at the [available settings](settings.md) and specifiy your choices in `/etc/maloja/settings.ini`. You can also set each of these settings as an environment variable with the prefix `MALOJA_` (e.g. `MALOJA_SKIP_SETUP`). * If you have activated admin mode in your web interface, you can upload custom images for artists or tracks by simply dragging them onto the existing image on the artist or track page. You can also manage custom images directly in the file system - consult `images.info` in the `/var/lib/maloja/images` folder. -* To specify custom rules, consult the `rules.info` file in `/etc/maloja/rules`. You can also apply some predefined rules on the `/setup` page of your server. +* To specify custom rules, consult the `rules.info` file in `/etc/maloja/rules`. You can also apply some predefined rules on the `/admin_setup` page of your server. ## How to scrobble diff --git a/maloja/apis/native_v1.py b/maloja/apis/native_v1.py index a9899a8..a046a0a 100644 --- a/maloja/apis/native_v1.py +++ b/maloja/apis/native_v1.py @@ -332,6 +332,4 @@ def newrule(**keys): @authenticated_api def set_settings(**keys): from .. import globalconf - from pprint import pprint - pprint(keys) globalconf.malojaconfig.update(keys)