diff options
author | Alfredo Deza <alfredo@deza.pe> | 2013-09-24 13:51:07 -0400 |
---|---|---|
committer | Gary Lowell <gary.lowell@inktank.com> | 2013-10-10 12:54:03 -0700 |
commit | 5968f45817fd16327a978a6d40fe7167d031c593 (patch) | |
tree | 31ca539dcf64540a525813ac6674d744d3cc6eb7 | |
parent | 31ce3b7e95989ee1c308c9a089fe5638432e5311 (diff) | |
download | ceph-5968f45817fd16327a978a6d40fe7167d031c593.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 |