We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a378f8e commit 39712cdCopy full SHA for 39712cd
ecl2df/eclfiles.py
@@ -58,6 +58,12 @@ def __init__(self, eclbase):
58
# eclbase might be a a Posix path object
59
eclbase = str(eclbase)
60
61
+ # Hint about possible wrong filenames:
62
+ if ".DATA" in eclbase and not os.path.exists(eclbase):
63
+ logger.warning("File %s does not exist", eclbase)
64
+ # (this is not an error, because it is possible
65
+ # to obtain summary without the DATA file being present)
66
+
67
# Strip .DATA or . at end of eclbase:
68
eclbase = rreplace(".DATA", "", eclbase)
69
eclbase = rreplace(".", "", eclbase)
0 commit comments