diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-03-10 13:59:35 -0600 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-03-10 13:59:35 -0600 |
commit | 0889827f252c9f6c21c1d4f2afc704b9b303e083 (patch) | |
tree | 178a50e5c49429f4d674e19325e734435492b308 /pato2.py | |
parent | a41f5f44a8f812dfa2aacaf359bb51782d7a1633 (diff) |
* Fixed issue 71: pending list ends with newline
Diffstat (limited to 'pato2.py')
-rw-r--r-- | pato2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -111,7 +111,7 @@ def make_pending(repo_,arch_,info_): printf( pkg_ + " package has no %NAME% attibute " ) if verbose: printf( lista_ ) a=open( pending + "-" + repo_ + ".txt", "w" ).write( - "\n".join([name + ":" + license_ for (name,license_) in lista_]) ) + "\n".join([name + ":" + license_ for (name,license_) in lista_]) + "\n") def remove_from_blacklist(repo_,arch_,info_,blacklist_): """ Check the blacklist and remove packages on the db""" |