strip target_path of whitespace

e.g. prevents issue with whitespace being added when a user drags a file to the terminal on mac
This commit is contained in:
Ian Burgwin 2018-04-09 22:55:00 -07:00 committed by GitHub
parent 10918a1e52
commit c427e08f95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,6 +78,7 @@ else:
print('Detecting host IP...')
hostIp = [(s.connect(('8.8.8.8', 53)), s.getsockname()[0], s.close()) for s in [socket.socket(socket.AF_INET, socket.SOCK_DGRAM)]][0][1]
target_path = target_path.strip()
if not os.path.exists(target_path):
print(target_path + ': No such file or directory.')
sys.exit(1)