You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TraktForVLC relies on the data command of the Python helper to get the current timestamp. However, the datetime Python module for WIndows does not support the '%s' format, which leads to failures of TraktForVLC, as reported in issue #91 by @Ale46.
Python does not support the '%s' format string for the datetime
module on Windows. This patch fixes that behavior by replacing
the '%s' string by the value returned by 'time.time()' on
Windows only; keeping the old behavior for Linux and MacOS.
Fixes#92
Signed-off-by: Raphaël Beamonte <raphael.beamonte@gmail.com>
TraktForVLC relies on the data command of the Python helper to get the current timestamp. However, the datetime Python module for WIndows does not support the '%s' format, which leads to failures of TraktForVLC, as reported in issue #91 by @Ale46.
The text was updated successfully, but these errors were encountered: