Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. --- original/file_to_fix.py
  2. +++ fixed/file_to_fix.py
  3. @@ -50,7 +50,7 @@
  4. if raw_msg != '':
  5. mqtt_client.publish(MQTT_TOPIC, pub_msg)
  6. f = open('messages.txt', 'a')
  7. - f.write('%s\\t' %datetime.now().strftime('%Y-%m-%d %H:%M'))
  8. + f.write('%s\\t' % datetime.now().strftime('%Y-%m-%d %H:%M'))
  9. f.write('%s\\t' % current_user)
  10. f.write('%s\\n' % raw_msg)
  11. f.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement