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
line 42, in _total_number_of_commits_in_cwd
with open('/dev/null', 'w') as devnull:
FileNotFoundError: [Errno 2] No such file or directory: '/dev/null'
In versioninforeader.py change line 42 from
with open('/dev/null', 'w') as devnull:
with open(os.devnull, 'w') as devnull:
The text was updated successfully, but these errors were encountered: