mirror of https://github.com/ecmwf/eccodes.git
MEMFS Python script: add copyright
This commit is contained in:
parent
c967d43488
commit
3237fdf6c2
15
memfs.py
15
memfs.py
|
@ -1,4 +1,15 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
#
|
||||||
|
# (C) Copyright 2005- ECMWF.
|
||||||
|
#
|
||||||
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
||||||
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
|
#
|
||||||
|
# In applying this licence, ECMWF does not waive the privileges and immunities
|
||||||
|
# granted to it by virtue of its status as an intergovernmental organisation
|
||||||
|
# nor does it submit to any jurisdiction.
|
||||||
|
#
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
@ -201,5 +212,5 @@ for line in f.readlines():
|
||||||
print(line, file=g)
|
print(line, file=g)
|
||||||
|
|
||||||
|
|
||||||
|
elapsed = time.time() - start
|
||||||
print("MEMFS: Done", time.time() - start)
|
print("MEMFS: Done in %.2f seconds" % elapsed)
|
||||||
|
|
Loading…
Reference in New Issue