Skip to content

Commit 4e3fb74

Browse files
committed
remove debug print statement in uftpfs
1 parent bbde277 commit 4e3fb74

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

CHANGES.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ Changelog for PyUNICORE
33

44
Issue tracker: https://github.com/HumanBrainProject/pyunicore
55

6-
Version 1.4.0 (MMM dd, 2025)
7-
----------------------------
6+
Version 1.3.4 (Jul 3, 2025)
7+
---------------------------
88
- CLI: implement server-to-server transfers
9+
- uftpfs: remove debug print statement
910

1011
Version 1.3.3 (June 2, 2025)
1112
----------------------------

pyunicore/uftp/uftpfs.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ def hassyspath(self, path):
5050
return False
5151

5252
def validatepath(self, path):
53-
_p = "." + super().validatepath(path)
54-
print(f"validatepath: {path}->{_p}")
55-
return _p
53+
return "." + super().validatepath(path)
5654

5755
# work around for bug in FPTFS - _read_dir() should never be used
5856
def _read_dir(self, path):
@@ -102,6 +100,5 @@ def _create_credential(self, parse_result):
102100

103101
def open_fs(self, fs_url, parse_result, writeable, create, cwd):
104102
auth_url, base_dir = self._parse(parse_result.resource)
105-
print("Base dir: ", base_dir)
106103
cred = self._create_credential(parse_result)
107104
return UFTPFS(auth_url, cred, base_dir)

0 commit comments

Comments
 (0)