Skip to content

Commit

Permalink
version 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sxslex committed Nov 30, 2019
1 parent 666f1b7 commit 545d2ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RDStation-client

[![Current version at PyPI](https://img.shields.io/badge/pypi-v0.0.1-orange.svg)](https://pypi.python.org/pypi/rdstation-client)
[![Current version at PyPI](https://img.shields.io/badge/pypi-v0.0.4-orange.svg)](https://pypi.python.org/pypi/rdstation-client)
[![Downloads per month on PyPI](https://img.shields.io/badge/download--lime.svg)](https://pypi.org/project/rdstation-client/)
[![Supported Python Versions](https://img.shields.io/badge/pyhton-2.7,3.5,3.7+-blue.svg)]()
[![Software status](https://img.shields.io/badge/status-stable-green.svg)]()
Expand Down Expand Up @@ -88,7 +88,7 @@ py.test --cov-report term-missing --cov=rdstation_client tests/ -v
Use pep8

```bash
pycodestyle rdstation_client
pycodestyle rdstation_client tests
```

[pypi-rdstation-client]: https://pypi.org/project/rdstation-client/
4 changes: 2 additions & 2 deletions rdstation_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://developers.rdstation.com/en/overview
"""Client for access API rdstation."""

__version__ = '0.0.1'
__version__ = '0.0.4'


import requests
Expand Down Expand Up @@ -155,7 +155,7 @@ def _create_token(self):
)
if not self.console_input:
raise ExceptionRDStationClientCreateCode(msg)
self.code = str(input(MSG_ERROR + '\n Enter CODE: '))
self.code = str(input(msg + '\n Enter CODE: '))
return self._create_token()

data = _response.json()
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
from setuptools import setup


with open('README.md', 'r', 'utf-8') as f:
with open('README.md') as f:
readme = f.read()

setup(
name='rdstation-client',
version='0.0.1',
version='0.0.4',
url='https://github.com/sxslex/rdstation-client',
download_url=(
'https://github.com/sxslex/rdstation-client/archive/v0.0.1.tar.gz'
'https://github.com/sxslex/rdstation-client/archive/v0.0.4.tar.gz'
),
author='SleX',
author_email='sx.slex@gmail.com',
Expand Down

0 comments on commit 545d2ed

Please sign in to comment.