Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
make it possible to update subpages in wikis
Workaround for 
python-gitlab#1079
  • Loading branch information
kernelport authored Apr 22, 2020
commit e4e0c73f31fe2cb26108d7d7bcf4f30826458587
1 change: 1 addition & 0 deletions gitlab/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ def save(self, **kwargs):

# call the manager
obj_id = self.get_id()
obj_id = obj_id.replace('/', '%2F')
server_data = self.manager.update(obj_id, updated_data, **kwargs)
if server_data is not None:
self._update_attrs(server_data)
Expand Down