aboutsummaryrefslogtreecommitdiff
path: root/oauth2client/file.py
diff options
context:
space:
mode:
authorDanny Hermes <daniel.j.hermes@gmail.com>2015-08-20 16:08:20 -0700
committerDanny Hermes <daniel.j.hermes@gmail.com>2015-08-21 08:24:01 -0700
commitd7c0c38b8d9c20fc24f5bd1bc8a368888025440d (patch)
tree674aa4dda462f6531c6bfbeb69c5bffadf31fa05 /oauth2client/file.py
parentb70baa4fab624e1f119960f0ddad3eae4a87aa2a (diff)
downloadoauth2client-d7c0c38b8d9c20fc24f5bd1bc8a368888025440d.tar.gz
Making oauth2client/ files pass PEP8.
Diffstat (limited to 'oauth2client/file.py')
-rw-r--r--oauth2client/file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauth2client/file.py b/oauth2client/file.py
index 83add1c..d0dd174 100644
--- a/oauth2client/file.py
+++ b/oauth2client/file.py
@@ -42,7 +42,7 @@ class Storage(BaseStorage):
def _validate_file(self):
if os.path.islink(self._filename):
raise CredentialsFileSymbolicLinkError(
- 'File: %s is a symbolic link.' % self._filename)
+ 'File: %s is a symbolic link.' % self._filename)
def acquire_lock(self):
"""Acquires any lock necessary to access this Storage.