From: Danny Al-Gaaf Date: Thu, 11 Jul 2013 13:37:04 +0000 (+0200) Subject: ceph_argparse.py: add missing spaces around operator X-Git-Tag: v0.68~151^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c2a63349b270f503ee9336275a994cb05d6bbdce;p=ceph.git ceph_argparse.py: add missing spaces around operator Signed-off-by: Danny Al-Gaaf --- diff --git a/src/pybind/ceph_argparse.py b/src/pybind/ceph_argparse.py index 1e68dcd03a1..287fa65c07b 100644 --- a/src/pybind/ceph_argparse.py +++ b/src/pybind/ceph_argparse.py @@ -370,7 +370,7 @@ class CephChoices(CephArgtype): Set of string literals; init with valid choices """ def __init__(self, strings='', **kwargs): - self.strings=strings.split('|') + self.strings = strings.split('|') def valid(self, s, partial=False): if not partial: