Skip to content

Commit bb36687

Browse files
committed
fix no status file
1 parent e8a6450 commit bb36687

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ It can be used in situations when a client don't want to pay your work. The app
66

77
Installation
88
------------
9+
```
10+
pip install django-dev-protector
11+
```
912
settings.py
1013
```
1114
INSTALLED_APPS = [

django_dev_protector/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ def get_status():
3939
res = get_from_file(STATUS_FILE_NAME)
4040
if not res:
4141
save_status(PROTECT_STATUS_DEFAULT)
42-
return PROTECT_STATUS_DEFAULT
42+
return str(PROTECT_STATUS_DEFAULT)
4343
return res

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='django-dev-protector',
11-
version='0.1',
11+
version='0.2',
1212
packages=['django_dev_protector'],
1313
include_package_data=True,
1414
license='BSD License',

0 commit comments

Comments
 (0)