cwstouched.py (a0428e9e) cwstouched.py (b0ad9294)
1#!/usr/bin/python
2
3#**************************************************************
4#
5# Licensed to the Apache Software Foundation (ASF) under one
6# or more contributor license agreements. See the NOTICE file
7# distributed with this work for additional information
8# regarding copyright ownership. The ASF licenses this file

--- 89 unchanged lines hidden (view full) ---

98 else:
99 #seems to be a folder
100 if len(outline[index:]) > 0:
101 newModule=string.strip(outline[index:])
102 if newModule != "" and not modules.count(newModule):
103 modules.append(newModule)
104
105for module in modules:
1#!/usr/bin/python
2
3#**************************************************************
4#
5# Licensed to the Apache Software Foundation (ASF) under one
6# or more contributor license agreements. See the NOTICE file
7# distributed with this work for additional information
8# regarding copyright ownership. The ASF licenses this file

--- 89 unchanged lines hidden (view full) ---

98 else:
99 #seems to be a folder
100 if len(outline[index:]) > 0:
101 newModule=string.strip(outline[index:])
102 if newModule != "" and not modules.count(newModule):
103 modules.append(newModule)
104
105for module in modules:
106 print module
106 print(module)