summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-10 13:59:35 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-10 13:59:35 -0600
commit0889827f252c9f6c21c1d4f2afc704b9b303e083 (patch)
tree178a50e5c49429f4d674e19325e734435492b308
parenta41f5f44a8f812dfa2aacaf359bb51782d7a1633 (diff)
* Fixed issue 71: pending list ends with newline
-rw-r--r--pato2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pato2.py b/pato2.py
index 18ace85..27a3962 100644
--- a/pato2.py
+++ b/pato2.py
@@ -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"""