Corrected dashboard script error.

BUG=

Review URL: https://webrtc-codereview.appspot.com/1187004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3657 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
phoglund@webrtc.org 2013-03-12 13:16:51 +00:00
parent 03e3117d87
commit 6ddb9071a1

View File

@ -118,17 +118,17 @@ class DashboardConnection:
def _read_consumer_secret(self, filename):
return self._read_shelve(filename, 'consumer_secret')
@staticmethod
def _read_shelve(filename, key):
input_file = shelve.open(filename)
def _read_shelve(filename, key):
input_file = shelve.open(filename)
if not input_file.has_key(key):
raise FailedToReadRequiredInputFile('Missing correct %s file in current '
'directory. You may have to run '
'request_oauth_permission.py.' %
filename)
if not input_file.has_key(key):
raise FailedToReadRequiredInputFile('Missing correct %s file in current '
'directory. You may have to run '
'request_oauth_permission.py.' %
filename)
result = input_file[key]
input_file.close()
result = input_file[key]
input_file.close()
return result
return result