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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cxmanage_api/docs/generate_api_rst.py b/cxmanage_api/docs/generate_api_rst.py
index 1e5a901..776dabe 100755
--- a/cxmanage_api/docs/generate_api_rst.py
+++ b/cxmanage_api/docs/generate_api_rst.py
@@ -2,7 +2,7 @@
:author: Eric Vasquez
:contact: eric.vasquez@calxeda.com
-:copyright: (c) 2012, Calxeda Inc.
+:copyright: (c) 2012-2013, Calxeda Inc.
"""
@@ -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):