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

Unified Diff: third_party/gsutil/gslib/exception.py

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 years, 8 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 | « third_party/gsutil/gslib/commands/version.py ('k') | third_party/gsutil/gslib/help_provider.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/gsutil/gslib/commands/version.py ('k') | third_party/gsutil/gslib/help_provider.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698