diff options
author | Danny Al-Gaaf <danny.al-gaaf@bisect.de> | 2013-07-27 11:32:34 +0200 |
---|---|---|
committer | Danny Al-Gaaf <danny.al-gaaf@bisect.de> | 2013-07-27 11:32:34 +0200 |
commit | a48b391fce126964b3990e54a1c2a68bcb2622a9 (patch) | |
tree | 640fb3e54954102f45ee56f65e575c383de88059 | |
parent | bd0e35f2e198b7a0683e185e4969a26488be8386 (diff) | |
download | ceph-a48b391fce126964b3990e54a1c2a68bcb2622a9.tar.gz |
ceph_rest_api.py: fix bad indentation
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
-rwxr-xr-x | src/pybind/ceph_rest_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pybind/ceph_rest_api.py b/src/pybind/ceph_rest_api.py index 9e53eba05fd..59e3f60a3a7 100755 --- a/src/pybind/ceph_rest_api.py +++ b/src/pybind/ceph_rest_api.py @@ -219,7 +219,7 @@ def generate_url_and_params(app, sig, flavor): desc.req and \ not str(desc.instance).startswith('--') and \ not params: - url += '/' + str(desc.instance) + url += '/' + str(desc.instance) else: # tell/<target> is a weird case; the URL includes what # would everywhere else be a parameter |