diff options
author | Jan Cholasta <jcholast@redhat.com> | 2011-04-11 14:41:10 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-04-13 11:59:04 +0200 |
commit | 267f39dceacb614f29127f3fea804cf43d1f8e88 (patch) | |
tree | 5781cd902414a20cfa0781fd7f59c190ba324cf2 /makeapi | |
parent | 811f631c0978e02c8b4a771eead6e13160f1e528 (diff) | |
download | freeipa-267f39dceacb614f29127f3fea804cf43d1f8e88.tar.gz freeipa-267f39dceacb614f29127f3fea804cf43d1f8e88.tar.xz freeipa-267f39dceacb614f29127f3fea804cf43d1f8e88.zip |
Fix uninitialized variables.
Diffstat (limited to 'makeapi')
-rwxr-xr-x | makeapi | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -136,6 +136,13 @@ def validate_api(): rval = 0 + expected_args = 0 + expected_options = 0 + expected_output = 0 + found_args = [] + found_options = [] + found_output = [] + # First run through the file and compare it to the API existing_cmds = [] cmd = None |