The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/file#fef64163af9439cdacdbbe04a847f7dcf42b8987
6 lines
120 B
Python
6 lines
120 B
Python
def main():
|
|
f = open("blacklist.txt","r")
|
|
fl = f.readlines()
|
|
return fl
|
|
if __name__== "__main__":
|
|
main() |