Skip to content

Commit

Permalink
[httpytail] fixed str/int concatenation (fixed issue #350)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielepantaleone committed Aug 17, 2015
1 parent bb382bf commit 6c70f20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion b3/plugins/httpytail/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
- fixed unresolved reference self.webFile: need to reference a local variable
06/03/2015 - 1.3 - Thomas LEVEIL - check Python version to be minimum 2.7
19/03/2015 - 1.3.1 - Fenix - fixed exception catching order (IOError before Exception)
05/06/2015 - 1.5 - Fenix - removed python 2.7 version check (B3 does not support python version prior than 2.7)
05/06/2015 - 1.5 - Fenix - removed python 2.7 version check (B3 does not support python version prior than 2.7)
17/08/2015 - 1.6 - Fenix - fixed str/int concatenation (see issue #350)
4 changes: 2 additions & 2 deletions b3/plugins/httpytail/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

__author__ = 'GrosBedo, 82ndab-Bravo17, Courgette'
__version__ = '1.5'
__version__ = '1.6'

import b3
import threading
Expand Down Expand Up @@ -197,7 +197,7 @@ def update(self):
# - file url
if self.httpconfig['port']:
logurl = self.httpconfig['protocol'] + '://' + self.httpconfig['host'] + ':' + \
self.httpconfig['port'] + '/' + self.httpconfig['path']
str(self.httpconfig['port']) + '/' + self.httpconfig['path']
else:
logurl = self.httpconfig['protocol'] + '://' + self.httpconfig['host'] + '/' + \
self.httpconfig['path']
Expand Down

0 comments on commit 6c70f20

Please sign in to comment.