From 6a560c776000e1f7d39986e9be37c9f46d3f2de1 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sat, 26 Dec 2020 16:32:59 +0100 Subject: [PATCH] Module update --- .gitignore | 6 ++++-- protocol | 2 +- report | 2 +- socket_protocol | 2 +- stringtools | 2 +- task | 2 +- tcp_client.py | 4 ++-- tcp_socket | 2 +- 8 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 5d806c2..c65eeac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ config.py -*.warn -*.log +.settings +*~ +messages.* + # ---> Python # Byte-compiled / optimized / DLL files diff --git a/protocol b/protocol index 6ac1b58..70c458d 160000 --- a/protocol +++ b/protocol @@ -1 +1 @@ -Subproject commit 6ac1b584fb53aeb58c1b9809fff306a56dd32400 +Subproject commit 70c458d34951cfbf1bddcf4a35fe7112797b106b diff --git a/report b/report index 98fea3a..25889f2 160000 --- a/report +++ b/report @@ -1 +1 @@ -Subproject commit 98fea3a4d45ba906d08a8ebc90525fb3592f06be +Subproject commit 25889f225b3593d515e37bebffef21458c961f64 diff --git a/socket_protocol b/socket_protocol index 127ef51..b1a3f75 160000 --- a/socket_protocol +++ b/socket_protocol @@ -1 +1 @@ -Subproject commit 127ef51719f2fdbc6699f7e0751f9d92f6773f0f +Subproject commit b1a3f75e6135929acab149028df3d4bbe7fdb28c diff --git a/stringtools b/stringtools index b86248c..76d8ae9 160000 --- a/stringtools +++ b/stringtools @@ -1 +1 @@ -Subproject commit b86248c1a3a3456e489e007857271106e1ecf090 +Subproject commit 76d8ae9b1bfd894bc5f4b830394ce0552120a508 diff --git a/task b/task index d3fbc59..bbc3c6f 160000 --- a/task +++ b/task @@ -1 +1 @@ -Subproject commit d3fbc5934051ab165723ca37e8f02596329f174a +Subproject commit bbc3c6f93588942087d617e33bc5797041ae2658 diff --git a/tcp_client.py b/tcp_client.py index daf2344..fb9c9c1 100644 --- a/tcp_client.py +++ b/tcp_client.py @@ -22,9 +22,9 @@ def help_msg(): if __name__ == '__main__': - report.appLoggingConfigure(os.path.dirname(__file__), 'logfile', config.loggers) + report.appLoggingConfigure(os.path.dirname(__file__), config.LOGTARGET, ((config.APP_NAME, 'DEBUG'), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT) c = tcp_socket.tcp_client_stp(config.server_ip, config.server_port) - prot = protocol.my_client_protocol(c, secret=config.secret) + prot = protocol.my_client_protocol(c, secret=config.secret, channel_name='leyk') target_dict = { 'bakehouse': [prot.DID_BAKE_HOUSE, ], 'bakery': [prot.DID_BAKERY, ], diff --git a/tcp_socket b/tcp_socket index 62f13e2..7146692 160000 --- a/tcp_socket +++ b/tcp_socket @@ -1 +1 @@ -Subproject commit 62f13e2d878b09b81d094c2f77dbd830d72be2c7 +Subproject commit 71466927127e16820ec0c670336b1c5b4547d3e7