Skip to content

Commit 4e6ff4b

Browse files
committed
little fixes
1 parent e7fbb40 commit 4e6ff4b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dist: trusty
55

66
python:
77
- "2.7"
8-
- "3.4"
8+
- "3.5"
99

1010
git:
1111
submodules: false

pywps/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def load_configuration(cfgfiles=None):
9090
config.set('server', 'encoding', 'utf-8')
9191
config.set('server', 'language', 'en-US')
9292
config.set('server', 'url', 'http://localhost/wps')
93-
config.set('server', 'maxoperations', '30')
93+
config.set('server', 'maxprocesses', '30')
9494
config.set('server', 'maxsingleinputsize', '1mb')
9595
config.set('server', 'maxrequestsize', '3mb')
9696
config.set('server', 'temp_path', tempfile.gettempdir())

pywps/inout/inputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def _execute_xml_data(self):
362362
"""Return Data node
363363
"""
364364
doc = WPS.Data()
365-
literal_doc = WPS.LiteralData(self.data)
365+
literal_doc = WPS.LiteralData(str(self.data))
366366

367367
if self.data_type:
368368
literal_doc.attrib['dataType'] = self.data_type

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py34
2+
envlist=py27,py35
33

44
[testenv:py27]
55
deps = flufl.enum

0 commit comments

Comments
 (0)