Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 9135f17

Browse files
committed
typo introduced before 2.18.x - now fixed
1 parent 3901158 commit 9135f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli4/cli4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def run_command(cf, method, command, params=None, content=None, files=None):
192192
if len(element) in [32, 40, 48] and hex_only.match(element):
193193
# raw identifier - lets just use it as-is
194194
identifier1 = element
195-
if len(element) == 36 and uuid_value.match(element):
195+
elif len(element) == 36 and uuid_value.match(element):
196196
# uuid identifier - lets just use it as-is
197197
identifier1 = element
198198
elif element[0] == ':':

0 commit comments

Comments
 (0)