6 |
for ktemplates in templateslist: |
for ktemplates in templateslist: |
7 |
#print ktemplates |
#print ktemplates |
8 |
- if os.path.isfile(ktemplates): |
- if os.path.isfile(ktemplates): |
9 |
+ mytemplatedir = '/etc/e-smith/templates/' + ktemplates |
+ mytemplatedir = '/etc/e-smith/templates/' + ktemplates |
10 |
+ if os.path.exists(mytemplatedir): |
+ if os.path.exists(mytemplatedir): |
11 |
os.spawnl(os.P_WAIT, expand_template, expand_template, ktemplates) |
os.spawnl(os.P_WAIT, expand_template, expand_template, ktemplates) |
12 |
|
|