From 7ed0be19711f9b5503ea271e9d63a59195ecdd51 Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Thu, 21 Mar 2013 18:47:46 +0100 Subject: [PATCH] rados.py: remove unnecessary semicolon Signed-off-by: Danny Al-Gaaf --- src/pybind/rados.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/rados.py b/src/pybind/rados.py index bc4e5237ad1..b0597350a4f 100755 --- a/src/pybind/rados.py +++ b/src/pybind/rados.py @@ -349,7 +349,7 @@ class SnapIterator(object): elif (ret != -errno.ERANGE): raise make_ex(ret, "error calling rados_snap_list for \ ioctx '%s'" % self.ioctx.name) - num_snaps = num_snaps * 2; + num_snaps = num_snaps * 2 self.cur_snap = 0 def __iter__(self): -- 2.47.3