| 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:
|
|
|