]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
pybind/rados: write_full: remove silly extra param
authorColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Thu, 17 Feb 2011 18:53:00 +0000 (10:53 -0800)
committerColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Thu, 17 Feb 2011 18:53:00 +0000 (10:53 -0800)
Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
src/pybind/rados.py

index 384f36a3ebf9d76cf97e67cfd9355a738752a421..e7cbee93ef62a84b8369b8fe8988301a38778346 100755 (executable)
@@ -260,7 +260,7 @@ class Pool(object):
 returned %d, but %d was the maximum number of bytes it could have \
 written." % (self.name, ret, length))
 
-    def write_full(self, key, data, full = False, offset = 0):
+    def write_full(self, key, data, offset = 0):
         self.require_pool_open()
         length = len(data)
         ret = self.librados.rados_write_full(self.pool_id, c_char_p(key),