Gavin
Gavin
Came across this too when attempting to update projects today Even when specifying the `webhook` via `properties` it fails e.g. ``` slack.properties['merge_request_channel'] = 'new-channel' slack.properties['webhook'] = 'XXXXX' # Note this...
I have tried this on the latest `python-gitlab 2.6.0` and works all ok e.g. ``` project = gl.projects.get("123", lazy=True) slack = project.services.get('slack') slack.webhook = 'XXXXXXXX' slack.merge_request_channel = '#new-channel' slack.save() ```
I can take this @PierreVincent if you want
Running with `watchdog 4.0.0` and still seems to be an issue