Merge pull request #311 from raggadhub/patch-2

fix path_to_send path
This commit is contained in:
Thirion Aurélien 2019-01-09 15:10:04 +01:00 committed by GitHub
commit 199177aeea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,7 +67,7 @@ while True:
print(paste)
with open(pystemonpath+paste, 'rb') as f: #.read()
messagedata = f.read()
path_to_send = pastes_directory+paste
path_to_send = os.path.join(pastes_directory,paste)
s = b' '.join( [ topic.encode(), path_to_send.encode(), base64.b64encode(messagedata) ] )
socket.send(s)