summaryrefslogtreecommitdiff
path: root/cxmanage_api/docs/generate_api_rst.py
diff options
context:
space:
mode:
Diffstat (limited to 'cxmanage_api/docs/generate_api_rst.py')
-rwxr-xr-xcxmanage_api/docs/generate_api_rst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cxmanage_api/docs/generate_api_rst.py b/cxmanage_api/docs/generate_api_rst.py
index 1e5a901..553d3c8 100755
--- a/cxmanage_api/docs/generate_api_rst.py
+++ b/cxmanage_api/docs/generate_api_rst.py
@@ -62,7 +62,7 @@ def get_source(source_dir):
source = {API_NAME : {}}
paths = glob.glob(os.path.join(source_dir, '*.py'))
for path in paths:
- f_path, f_ext = os.path.splitext(path)
+ f_path, _ = os.path.splitext(path)
f_name = f_path.split(source_dir)[1]
if (not f_name in BLACKLIST):
if TITLES.has_key(f_name):