Skip to content

Commit

Permalink
little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jachym committed Jun 21, 2016
1 parent e7fbb40 commit 4e6ff4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dist: trusty

python:
- "2.7"
- "3.4"
- "3.5"

git:
submodules: false
Expand Down
2 changes: 1 addition & 1 deletion pywps/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def load_configuration(cfgfiles=None):
config.set('server', 'encoding', 'utf-8')
config.set('server', 'language', 'en-US')
config.set('server', 'url', 'http://localhost/wps')
config.set('server', 'maxoperations', '30')
config.set('server', 'maxprocesses', '30')
config.set('server', 'maxsingleinputsize', '1mb')
config.set('server', 'maxrequestsize', '3mb')
config.set('server', 'temp_path', tempfile.gettempdir())
Expand Down
2 changes: 1 addition & 1 deletion pywps/inout/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def _execute_xml_data(self):
"""Return Data node
"""
doc = WPS.Data()
literal_doc = WPS.LiteralData(self.data)
literal_doc = WPS.LiteralData(str(self.data))

if self.data_type:
literal_doc.attrib['dataType'] = self.data_type
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py27,py34
envlist=py27,py35

[testenv:py27]
deps = flufl.enum
Expand Down

0 comments on commit 4e6ff4b

Please sign in to comment.