Skip to content

Commit fa819be

Browse files
committed
remove debug infos
1 parent 119e14a commit fa819be

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

qiita_client/qiita_client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -817,9 +817,6 @@ def fetch_file_from_central(self, filepath, prefix=None):
817817
# check if requested filepath is a single file OR a whole directory
818818
if 'Is-Qiita-Directory' in response.headers.keys():
819819
with ZipFile(BytesIO(response.content)) as zf:
820-
import sys
821-
print("ÖÖÖÖÖ in client:\n%s" % zf.filelist, file=sys.stderr)
822-
823820
zf.extractall(path=target_filepath)
824821
else:
825822
content = response.content
@@ -881,7 +878,6 @@ def push_file_to_central(self, filepath):
881878
for root, dirnames, filenames in os.walk(filepath):
882879
for filename in fnmatch.filter(filenames, "*"):
883880
fp = os.path.join(root, filename)
884-
print("äääääääääää '%s' '%s' '%s' '%s' " % (root, dirnames, filenames, os.path.join(dirpath, os.path.dirname(fp))))
885881
self.post('/cloud/push_file_to_central/',
886882
files={os.path.join(
887883
dirpath,

0 commit comments

Comments
 (0)