fixed erro introduced 2 commits ago (-e) : tuples have no reverse() method
authorEdouard Tisserant
Wed, 24 Jan 2018 16:12:49 +0100
changeset 1907 9d17b9d91697
parent 1906 60edd0c901f1
child 1908 d0b1ffcb9368
fixed erro introduced 2 commits ago (-e) : tuples have no reverse() method
Beremiz_service.py
--- a/Beremiz_service.py	Wed Jan 24 15:44:36 2018 +0100
+++ b/Beremiz_service.py	Wed Jan 24 16:12:49 2018 +0100
@@ -110,7 +110,7 @@
     elif o == "-s":
         wampsecret = None if a == "off" else a
     elif o == "-e":
-        l = os.path.split(os.path.realpath(a))
+        l = list(os.path.split(os.path.realpath(a)))
         l.reverse()
         extensions.append(l)
     else: