diff options
| author | Pjotr Prins | 2026-03-29 02:30:31 -0500 |
|---|---|---|
| committer | Pjotr Prins | 2026-03-29 02:30:31 -0500 |
| commit | 926324dfb5706451eab9c1d5771c3079f8668991 (patch) | |
| tree | 50e3d1afd49256c76da2d093c8f1ba3681f58160 | |
| parent | dc3da0b15ef14abd7795b2cecbe23271363b2647 (diff) | |
| download | genecup-926324dfb5706451eab9c1d5771c3079f8668991.tar.gz | |
Missing comma
| -rwxr-xr-x | more_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/more_functions.py b/more_functions.py index a778d64..f94ec34 100755 --- a/more_functions.py +++ b/more_functions.py @@ -184,7 +184,7 @@ print(f" pubmed_path={pubmed_path}") if not os.path.isdir(pubmed_path): print(f"ERROR: EDIRECT_PUBMED_MASTER directory not found: {pubmed_path}") raise SystemExit(1) -testdir = os.path.join(pubmed_path, "Archive" "01") +testdir = os.path.join(pubmed_path, "Archive", "01") if not os.path.isdir(testdir): print(f"ERROR: PubMed/Archive not found in {pubmed_path}") raise SystemExit(1) |
