All checks were successful
Sync To /home/ubuntu/gfps / sync (push) Successful in 2s
Change-Id: I71e676b997159a141ca07d16f82a73b45f4b2410
7 lines
204 B
Python
7 lines
204 B
Python
import sys
|
|
|
|
loc = "file:///C:/b1330068943497508f1faa4108fa1f75\r\n"
|
|
src = "b1330068943497508f1faa4108fa1f75"
|
|
print("Ends with:", loc.endswith(src))
|
|
print("Ends with stripped:", loc.strip().endswith(src))
|