From 04770e671624b6d6b5cc26dd0c1217cdd5e400a0 Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Fri, 29 Jan 2021 12:36:02 +0200 Subject: [PATCH] refactored name of SyncthingClient module --- syncthing_monitor/__main__.py | 2 +- syncthing_monitor/{syncthing_rest.py => syncthing_client.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename syncthing_monitor/{syncthing_rest.py => syncthing_client.py} (100%) diff --git a/syncthing_monitor/__main__.py b/syncthing_monitor/__main__.py index 800111c..75240c0 100644 --- a/syncthing_monitor/__main__.py +++ b/syncthing_monitor/__main__.py @@ -1,6 +1,6 @@ import syncthing_monitor.config_xml as xml from syncthing_monitor.etcd_cluster_info import EtcdClient -from syncthing_monitor.syncthing_rest import SyncthingClient +from syncthing_monitor.syncthing_client import SyncthingClient DEFAULT_ST_CONFIG_XML_PATH = '/config/config.xml' DEFAULT_ST_GUI_PORT = 8384 diff --git a/syncthing_monitor/syncthing_rest.py b/syncthing_monitor/syncthing_client.py similarity index 100% rename from syncthing_monitor/syncthing_rest.py rename to syncthing_monitor/syncthing_client.py