| 144 |
sys.exit(1) |
sys.exit(1) |
| 145 |
|
|
| 146 |
# temporary hack to show cases without any INs. |
# temporary hack to show cases without any INs. |
| 147 |
if not len(found['in']): |
if not found['in']: |
| 148 |
return [ 'no-todo-list' ] |
return [ 'no-todo-list' ] |
| 149 |
|
|
| 150 |
for item in found['out'].keys(): |
for item in found['out'].keys(): |
| 153 |
except KeyError: |
except KeyError: |
| 154 |
print 'Warning: "%s" was not on the TODO list' % item |
print 'Warning: "%s" was not on the TODO list' % item |
| 155 |
|
|
| 156 |
if len(found['in']): |
if found['in']: |
| 157 |
# something has not been dealt with yet |
# something has not been dealt with yet |
| 158 |
outstanding = found['in'].keys() |
outstanding = found['in'].keys() |
| 159 |
outstanding.sort() |
outstanding.sort() |