Skip to content

Commit

Permalink
Fix str
Browse files Browse the repository at this point in the history
  • Loading branch information
makseq committed Feb 18, 2021
1 parent a994179 commit 286b7b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion label_studio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package_name = 'label-studio'

# Package version
__version__ = '0.9.1.post0'
__version__ = '0.9.1.post1'
2 changes: 1 addition & 1 deletion label_studio/utils/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def send(self, request=None, session=None, response=None, **kwargs):
'env': self.env,
'version': self.version,
'project_name': self.input_args.project_name if self.input_args else None,
'python': sys.version_info[0] + '.' + sys.version_info[1]
'python': str(sys.version_info[0]) + '.' + str(sys.version_info[1])
}
except:
pass
Expand Down

0 comments on commit 286b7b5

Please sign in to comment.