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

Unified Diff: boto/sqs/queue.py

Issue 8386013: Merging in latest boto. (Closed) Base URL: svn://svn.chromium.org/boto
Patch Set: Redoing vendor drop by deleting and then merging. Created 9 years, 2 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 | « boto/sqs/jsonmessage.py ('k') | boto/storage_uri.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: boto/sqs/queue.py
diff --git a/boto/sqs/queue.py b/boto/sqs/queue.py
index 9965e43d34d81ed6c1f045b59d5879947920170b..fe25f582a8453ef642a130052c9022a502f68389 100644
--- a/boto/sqs/queue.py
+++ b/boto/sqs/queue.py
@@ -405,7 +405,7 @@ class Queue:
def load_from_filename(self, file_name, sep='\n'):
"""Utility function to load messages from a local filename to a queue"""
fp = open(file_name, 'rb')
- n = self.load_file_file(fp, sep)
+ n = self.load_from_file(fp, sep)
fp.close()
return n
« no previous file with comments | « boto/sqs/jsonmessage.py ('k') | boto/storage_uri.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698