Skip to content

Commit

Permalink
fix LOGGER.debug statements (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Oct 16, 2023
1 parent 59ab2c3 commit 11723c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions owslib/wps.py
Expand Up @@ -1611,13 +1611,13 @@ def get_bool_attribute(elem, attribute):
self.dataInputs = []
for inputElement in elem.findall('DataInputs/Input'):
self.dataInputs.append(Input(inputElement))
LOGGER.debug(self.dataInputs[-1], prefix='\tInput: ')
LOGGER.debug(self.dataInputs[-1])

# <ProcessOutputs>
self.processOutputs = []
for outputElement in elem.findall('ProcessOutputs/Output'):
self.processOutputs.append(Output(outputElement))
LOGGER.debug(self.processOutputs[-1], prefix='\tOutput: ')
LOGGER.debug(self.processOutputs[-1])

def __str__(self):
return "WPS Process: {}, title={}".format(self.identifier or '', self.title or '')
Expand Down

0 comments on commit 11723c5

Please sign in to comment.