diff options
author | Alfredo Deza <alfredo@deza.pe> | 2013-09-24 13:51:07 -0400 |
---|---|---|
committer | Gary Lowell <gary.lowell@inktank.com> | 2013-10-09 10:04:50 -0700 |
commit | b08efa8a2db655051ca8e48423837c075722d671 (patch) | |
tree | d097fde502b3d3fa7fd02a39c6e2a1ba55bb4389 | |
parent | 6156ca2a6d560ce9836afa4531a5e7fc135a485f (diff) | |
download | ceph-b08efa8a2db655051ca8e48423837c075722d671.tar.gz |
remove argparse from ceph-rest, fix imports
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
-rwxr-xr-x | src/pybind/ceph-rest/ceph_rest/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pybind/ceph-rest/ceph_rest/__init__.py b/src/pybind/ceph-rest/ceph_rest/__init__.py index a1a138d6d95..f4eacecb5fc 100755 --- a/src/pybind/ceph-rest/ceph_rest/__init__.py +++ b/src/pybind/ceph-rest/ceph_rest/__init__.py @@ -11,7 +11,7 @@ import xml.etree.ElementTree import xml.sax.saxutils import flask -from ceph_rest.argparse import \ +from ceph_argparse import \ ArgumentError, CephPgid, CephOsdName, CephChoices, CephPrefix, \ concise_sig, descsort, parse_funcsig, parse_json_funcsigs, \ validate, json_command |