Skip to content

Commit

Permalink
[feature] Add message for first time users to show the result mount p…
Browse files Browse the repository at this point in the history
…oint

Especially useful when the mount target was not given but automatically
chosen.
  • Loading branch information
mxmlnkn committed Sep 12, 2024
1 parent 876b89a commit a86db2c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ratarmount.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,10 @@ def pointsIntoMountPoint(pathToTest):
statResults = os.lstat(self.mountPoint)
self.mountPointInfo = {key: getattr(statResults, key) for key in dir(statResults) if key.startswith('st_')}

if self.printDebug >= 1:
print("Created mount point at:", self.mountPoint)
print("This folder shows the contents of the selected archive(s).")

def __del__(self) -> None:
try:
if self.mountPointWasCreated:
Expand Down

0 comments on commit a86db2c

Please sign in to comment.