Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 6a6b559

Browse files
authored
Merge pull request #92 from juanjux/fix/issue_server_100
Fix/issue server 100
2 parents 6b92e7a + fd6867d commit 6a6b559

File tree

7 files changed

+81995
-5
lines changed

7 files changed

+81995
-5
lines changed

Dockerfile.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MAINTAINER source{d}
33

44
ARG DEVDEPS=native/dev_deps
55
ARG CONTAINER_DEVDEPS=/tmp/dev_deps
6-
ARG PYDETECTOR_VER=0.14.0
6+
ARG PYDETECTOR_VER=0.14.1
77

88
RUN apk add --no-cache --update python python3 py-pip py2-pip git
99

native/python_package/python_driver/requestprocessor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import abc
22
import json
3-
import logging
43
from pydetector import detector
54
from traceback import format_exc
65
from python_driver.version import __version__
@@ -93,7 +92,6 @@ def _return_error(self, filepath: AnyStr='', status: AnyStr='error',
9392
"""
9493

9594
ret_ast = None if status == 'fatal' else ast
96-
logging.error('Filepath: {}, Errors: {}'.format(filepath, self.errors))
9795
response = Response({
9896
'status': status,
9997
'errors': self.errors,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pydetector-bblfsh==0.14.0
1+
pydetector-bblfsh==0.14.1
22
-e git+git://github.com/python/mypy.git@0bb2d1680e8b9522108b38d203cb73021a617e64#egg=mypy-lang
33
typed-ast==1.0.1

native/python_package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
]
3232
},
3333
install_requires=[
34-
"pydetector-bblfsh==0.14.0"
34+
"pydetector-bblfsh==0.14.1"
3535
],
3636
classifiers=[
3737
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)