kopia lustrzana https://github.com/dgtlmoon/changedetection.io
Fixing Pip install problem - Update MANIFEST to include model/ subdir, improving imports (#593)
rodzic
0e385b1c22
commit
034507f14f
|
@ -1,5 +1,6 @@
|
||||||
recursive-include changedetectionio/templates *
|
recursive-include changedetectionio/templates *
|
||||||
recursive-include changedetectionio/static *
|
recursive-include changedetectionio/static *
|
||||||
|
recursive-include changedetectionio/model *
|
||||||
include changedetection.py
|
include changedetection.py
|
||||||
global-exclude *.pyc
|
global-exclude *.pyc
|
||||||
global-exclude node_modules
|
global-exclude node_modules
|
||||||
|
|
|
@ -40,7 +40,7 @@ from flask_wtf import CSRFProtect
|
||||||
|
|
||||||
from changedetectionio import html_tools
|
from changedetectionio import html_tools
|
||||||
|
|
||||||
__version__ = '0.39.13'
|
__version__ = '0.39.13.1'
|
||||||
|
|
||||||
datastore = None
|
datastore = None
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,7 @@ from threading import Lock
|
||||||
import re
|
import re
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
from changedetectionio.model import Watch, App
|
from . model import App, Watch
|
||||||
|
|
||||||
|
|
||||||
# Is there an existing library to ensure some data store (JSON etc) is in sync with CRUD methods?
|
# Is there an existing library to ensure some data store (JSON etc) is in sync with CRUD methods?
|
||||||
# Open a github issue if you know something :)
|
# Open a github issue if you know something :)
|
||||||
|
|
Ładowanie…
Reference in New Issue