Last change
on this file was
14257,
checked in by nicolasmartin, 4 months ago
|
Overall review of LaTeX sources (not tested completely as of now):
- Reworking global files: main document.tex, add glossary.tex, cosmetic changes…
- Ignore missing namelists (namsbc_isf, namsbc_iscpl and namptr)
- Removal of references for unused indices (\hfile, \ifile and \jp)
- Update of .svnignore and svn:ignore properties accordingly
- Split of manual abstract into a common NEMO abs for all and a specific one for each engine
- Shrinking variables names used in the frontmatter
|
-
Property svn:executable set to
*
|
File size:
185 bytes
|
Line | |
---|
1 | #!/usr/bin/env python3 |
---|
2 | |
---|
3 | import sys, importlib |
---|
4 | |
---|
5 | for argv in sys.argv[1:]: |
---|
6 | try: |
---|
7 | importlib.import_module(argv) |
---|
8 | except ImportError: |
---|
9 | print("Package %s is missing in Python 3" % argv) |
---|
10 | |
---|
Note: See
TracBrowser
for help on using the repository browser.