Skip to content

Commit

Permalink
Merge pull request #38 from UAL-RE/37-fix-windows-logger-error
Browse files Browse the repository at this point in the history
Fix: Use platform.uname instead of os.uname (Issue #37)
  • Loading branch information
yhan818 committed Aug 4, 2023
2 parents a755b68 + e52cf4a commit ccec0ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion redata/commons/logger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sys
import io
from os import path, uname, chmod, mkdir
from os import path, chmod, mkdir
from platform import uname

from datetime import date
import pandas as pd
Expand Down

0 comments on commit ccec0ea

Please sign in to comment.