From ba2b5047c0be1f02b737a6dcbef50e7455f4d7b2 Mon Sep 17 00:00:00 2001 From: Alejandro Gómez Date: Sun, 29 Apr 2012 12:32:09 +0200 Subject: add `Labels` and `Milestones` to docs --- pygithub3/services/issues/comments.py | 2 +- pygithub3/services/issues/labels.py | 1 + pygithub3/services/issues/milestones.py | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'pygithub3') diff --git a/pygithub3/services/issues/comments.py b/pygithub3/services/issues/comments.py index 5d6980a..d007286 100644 --- a/pygithub3/services/issues/comments.py +++ b/pygithub3/services/issues/comments.py @@ -67,7 +67,7 @@ class Comments(Service): :param str repo: Repo name :param int id: Comment id - ... warning:: + .. warning:: You must be authenticated """ request = self.request_builder('issues.comments.delete', user=user, diff --git a/pygithub3/services/issues/labels.py b/pygithub3/services/issues/labels.py index 0355918..6aea6e7 100644 --- a/pygithub3/services/issues/labels.py +++ b/pygithub3/services/issues/labels.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python # -*- encoding: utf-8 -*- from pygithub3.services.base import Service diff --git a/pygithub3/services/issues/milestones.py b/pygithub3/services/issues/milestones.py index aba6dd4..851e9f2 100644 --- a/pygithub3/services/issues/milestones.py +++ b/pygithub3/services/issues/milestones.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python # -*- encoding: utf-8 -*- from pygithub3.services.base import Service @@ -94,7 +95,7 @@ class Milestones(Service): :param str repo: Repo name :param int number: Milestone number - ... warning:: + .. warning:: You must be authenticated """ request = self.request_builder('issues.milestones.delete', -- cgit v1.2.3-59-g8ed1b