1=== modified file 'pastebinit'
2--- pastebinit 2018-07-04 00:46:08 +0000
3+++ pastebinit 2020-11-13 14:21:11 +0000
4@@ -38,8 +38,8 @@
5
6 # Now try to override it with a distributor pastebin
7 try:
8- import platform
9- release = platform.linux_distribution()[0].lower()
10+ import distro
11+ release = distro.id()
12 if release == 'debian':
13 defaultPB = "paste.debian.net"
14 elif release == 'fedora':