Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: gclient.py

Issue 2808062: Fix docstring to be a docstring. (Closed)
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index 7cd2c01d3836f66e07ac39691455e8b4e11b711d..791c9352dfeec6f0c25f35ac98d5513fd250c765 100644
--- a/gclient.py
+++ b/gclient.py
@@ -446,7 +446,7 @@ class Dependency(GClientKeywords):
return '%s: %s' % (self.name, self.url)
def hierarchy(self):
- "Returns a human-readable hierarchical reference to a Dependency."
+ """Returns a human-readable hierarchical reference to a Dependency."""
out = '%s(%s)' % (self.name, self.url)
i = self.parent
while i and i.name:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698