We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2619e0 commit 9639d56Copy full SHA for 9639d56
qiita_client/qiita_client.py
@@ -863,8 +863,9 @@ def push_file_to_central(self, filepath):
863
return filepath
864
865
elif self._plugincoupling == 'https':
866
- logger.debug('Submitting %s %s to qiita server.' % (
867
- 'directory' if os.path.isdir(filepath) else 'file', filepath))
+ logger.debug('Submitting %s %s to qiita server via %s' % (
+ 'directory' if os.path.isdir(filepath) else 'file', filepath,
868
+ self._plugincoupling))
869
870
# target path, i.e. without filename
871
dirpath = os.path.dirname(filepath)
0 commit comments