]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
pybind/rados: Remove unused variable.
authorTommi Virtanen <tommi.virtanen@dreamhost.com>
Fri, 25 Feb 2011 23:28:06 +0000 (15:28 -0800)
committerTommi Virtanen <tommi.virtanen@dreamhost.com>
Fri, 25 Feb 2011 23:28:06 +0000 (15:28 -0800)
Signed-off-by: Tommi Virtanen <tommi.virtanen@dreamhost.com>
src/pybind/rados.py

index dc6b542651f85c6c314178befce0613c75ff5e6e..40fe897a3e0722ed52458a8caaa155e8f5c4f096 100755 (executable)
@@ -113,7 +113,6 @@ class Rados(object):
 
     # Returns true if the pool exists; false otherwise.
     def pool_exists(self, pool_name):
-        pool = c_void_p()
         ret = self.librados.rados_lookup_pool(c_char_p(pool_name))
         if (ret >= 0):
             return True