File: drop-generated.py

package info (click to toggle)
otf2 3.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,980 kB
  • sloc: ansic: 92,997; python: 16,977; cpp: 9,057; sh: 6,299; makefile: 235; awk: 54
file content (7 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
from os import unlink
from templates import templates
for i in templates.templates:
    try:
        unlink(i[0])
    except:
        pass