diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2013-06-22 10:11:35 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2013-06-22 10:11:35 +0200 |
commit | 7e7b29c02cc8a1015fb56a7dac6488cf24873922 (patch) | |
tree | 653a1d793595c54b4aeea63a9f7822a286372708 /gitlab.py | |
parent | b4bc9dff52d2610523cefa47fd0d0aaf8f2d12c1 (diff) | |
download | gitlab-7e7b29c02cc8a1015fb56a7dac6488cf24873922.tar.gz |
ProjectBranch: commit is an other object
Diffstat (limited to 'gitlab.py')
-rw-r--r-- | gitlab.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -584,6 +584,7 @@ class ProjectBranch(GitlabObject): canCreate = False requiredGetAttrs = ['project_id'] requiredListAttrs = ['project_id'] + _constructorTypes = {'commit': 'ProjectCommit'} def protect(self, protect=True): url = self._url % {'project_id': self.project_id} |