summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-06 18:08:25 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-06 18:08:25 -0600
commite2385920015311376c1631a42a1ca8f1c45dae4f (patch)
treee885d9a11f5cf8a85cd3e41ce8bac34ee5de07b9
parent31a0d9e077ed10c5a4b9f461bbde8979f127bdf7 (diff)
* Fixed error that leaked non-free files to repo
-rw-r--r--pato2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pato2.py b/pato2.py
index 936e97a..336c6fb 100644
--- a/pato2.py
+++ b/pato2.py
@@ -56,7 +56,7 @@ def sync_all_repo(debug=verbose):
cmd=generate_rsync_command(rsync_list_command)
rsout=run_rsync(cmd)
pkgs=pkginfo_from_rsync_output(rsout)
- generate_exclude_list_from_blacklist(pkgs,listado(blacklist))
+ generate_exclude_list_from_blacklist(pkgs,listado(blacklist),debug=False)
cmd=generate_rsync_command(rsync_update_command,blacklist_file=blacklist)
a=run_rsync(cmd)
if debug: printf(a)