| Index: third_party/gsutil/gslib/exception.py
|
| diff --git a/third_party/gsutil/20110627/gslib/exception.py b/third_party/gsutil/gslib/exception.py
|
| similarity index 87%
|
| rename from third_party/gsutil/20110627/gslib/exception.py
|
| rename to third_party/gsutil/gslib/exception.py
|
| index 38f0395b885c141136c8b2323bf34f60e17bf108..15c29233ffebbeec6e507a9f3e09570862b4709f 100644
|
| --- a/third_party/gsutil/20110627/gslib/exception.py
|
| +++ b/third_party/gsutil/gslib/exception.py
|
| @@ -35,8 +35,8 @@ class CommandException(StandardError):
|
| """Instantiate a CommandException.
|
|
|
| Args:
|
| - reason: text describing the problem.
|
| - informational: indicates reason should be printed as FYI, not a failure.
|
| + reason: Text describing the problem.
|
| + informational: Indicates reason should be printed as FYI, not a failure.
|
| """
|
| StandardError.__init__(self)
|
| self.reason = reason
|
| @@ -52,11 +52,11 @@ class CommandException(StandardError):
|
| class ProjectIdException(StandardError):
|
|
|
| def __init__(self, reason):
|
| - StandardError.__init__(self)
|
| - self.reason = reason
|
| + StandardError.__init__(self)
|
| + self.reason = reason
|
|
|
| def __repr__(self):
|
| - return 'ProjectIdException: %s' % self.reason
|
| + return 'ProjectIdException: %s' % self.reason
|
|
|
| def __str__(self):
|
| - return 'ProjectIdException: %s' % self.reason
|
| + return 'ProjectIdException: %s' % self.reason
|
|
|