Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qiita_client/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def __call__(self, server_url, job_id, output_dir):
logger.debug('Entered BaseQiitaPlugin.__call__()')
# Set up the Qiita Client
config = ConfigParser()
with open(self.conf_fp, 'U') as conf_file:
with open(self.conf_fp, 'r') as conf_file:
config.readfp(conf_file)

plugincoupling = self._DEFAULT_PLUGIN_COUPLINGS
Expand Down
Loading