Author: tomaz
Date: Sat Jul 2 19:57:36 2011
New Revision: 1142288
URL: http://svn.apache.org/viewvc?rev=1142288&view=rev
Log:
oops, this method signature was out of date.
Modified:
libcloud/trunk/libcloud/storage/base.py
Modified: libcloud/trunk/libcloud/storage/base.py
URL:
http://svn.apache.org/viewvc/libcloud/trunk/libcloud/storage/base.py?rev=1142288&r1=1142287&r2=1142288&view=diff
==============================================================================
--- libcloud/trunk/libcloud/storage/base.py (original)
+++ libcloud/trunk/libcloud/storage/base.py Sat Jul 2 19:57:36 2011
@@ -126,9 +126,9 @@ class Container(object):
return self.driver.get_object(container_name=self.name,
object_name=object_name)
- def upload_object(self, file_path, object_name, extra=None,
verify_hash=True):
+ def upload_object(self, file_path, object_name, extra=None):
return self.driver.upload_object(
- file_path, self, object_name, extra, verify_hash)
+ file_path, self, object_name, extra)
def upload_object_via_stream(self, iterator, object_name, extra=None):
return self.driver.upload_object_via_stream(