|
@@ -37,14 +37,6 @@ def print_sections(raw_result):
|
|
|
print('<<<edirectory_monitor:sep({})>>>')
|
|
|
print(chr(separator).join(lines))
|
|
|
|
|
|
-
|
|
|
-def print_list(the_list):
|
|
|
- for each_item in the_list:
|
|
|
- if isinstance(each_item, list):
|
|
|
- print_list(each_item)
|
|
|
- else:
|
|
|
- print(clean_key(each_item[0]))
|
|
|
-
|
|
|
def main():
|
|
|
args = sys.argv[1:]
|
|
|
if len(args) < 3:
|
|
@@ -102,4 +94,3 @@ def main():
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
main()
|
|
|
-
|