Skip to content

Commit 1c3b0f4

Browse files
committed
undo couple more chanages
1 parent 3eb64cf commit 1c3b0f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
'sphinx.ext.doctest',
4545
'sphinx.ext.intersphinx',
4646
'sphinx.ext.coverage',
47-
'sphinx.ext.viewcode'
48-
#'sphinxcontrib.napoleon',
47+
'sphinx.ext.viewcode',
48+
'sphinxcontrib.napoleon',
4949
]
5050

5151
napoleon_google_docstring = True

syncthing/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def reraise(msg, exc):
5858
instead of by two-key dictionaries. """
5959

6060
def _syncthing():
61-
KEY = os.getenv('SYNCTHING_API_KEY', 'YZ434wn99kUqiwXipkLtdGEPqSgxFVfP')
62-
HOST = os.getenv('SYNCTHING_HOST', '192.168.0.132')
61+
KEY = os.getenv('SYNCTHING_API_KEY')
62+
HOST = os.getenv('SYNCTHING_HOST', '127.0.0.1')
6363
PORT = os.getenv('SYNCTHING_PORT', 8384)
6464
IS_HTTPS = bool(int(os.getenv('SYNCTHING_HTTPS', '0')))
6565
SSL_CERT_FILE = os.getenv('SYNCTHING_CERT_FILE')

0 commit comments

Comments
 (0)