Skip to content

Commit ff0ce4c

Browse files
fixed truncation of directories in semi-rare case...!
1 parent ae029b1 commit ff0ce4c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "lkspacecraft"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = ""
55
authors = ["Christina Hedges <christina.l.hedges@nasa.gov>", "Tyler Pritchard <tyler.a.pritchard@nasa.gov>"]
66
readme = "README.rst"

src/lkspacecraft/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def truncate_directory_string(directory_string):
5555
else:
5656
line = f"{line}+"
5757
lines.append(line)
58-
line = ""
58+
line = f"/{word}"
5959
lines.append(line)
6060
return lines
6161

0 commit comments

Comments
 (0)