clockfort / GitHub-Backup

Backup all the repositories of a github user or organization automatically.
Creative Commons Zero v1.0 Universal
359 stars 103 forks source link

Import ConfigParser instead of SafeConfigParser #57

Open laurensk opened 4 months ago

laurensk commented 4 months ago

SafeConfigParser was renamed to ConfigParser a long time ago but still had an alias. In Python 3.12, this alias was removed causing this script to not run. This PR fixes this by using ConfigParser directly.