From: Danny Al-Gaaf Date: Fri, 24 May 2013 10:46:15 +0000 (+0200) Subject: ceph-disk: remove unnecessary semicolons X-Git-Tag: v0.64~43^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9785478a2aae7bf5234fbfe443603ba22b5a50d2;p=ceph.git ceph-disk: remove unnecessary semicolons Signed-off-by: Danny Al-Gaaf --- diff --git a/src/ceph-disk b/src/ceph-disk index 161c700669f5..6c1b37038474 100755 --- a/src/ceph-disk +++ b/src/ceph-disk @@ -1834,7 +1834,7 @@ def is_suppressed(path): def set_suppress(path): disk = os.path.realpath(path) if not os.path.exists(disk): - raise Error('does not exist', path); + raise Error('does not exist', path) if not stat.S_ISBLK(os.lstat(path).st_mode): raise Error('not a block device', path) base = disk[5:] @@ -1846,7 +1846,7 @@ def set_suppress(path): def unset_suppress(path): disk = os.path.realpath(path) if not os.path.exists(disk): - raise Error('does not exist', path); + raise Error('does not exist', path) if not stat.S_ISBLK(os.lstat(path).st_mode): raise Error('not a block device', path) assert disk.startswith('/dev/')