summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-06 19:02:14 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-06 19:02:14 -0600
commita41f5f44a8f812dfa2aacaf359bb51782d7a1633 (patch)
tree28dac57020061704cb05f3895a423214eb93d962
parent15ed2078e8743f87efcd63ac62cc0bfd5b39dc96 (diff)
* Fixed blacklist for rsync_command at sync_all_repo
-rw-r--r--pato2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pato2.py b/pato2.py
index 03afebd..18ace85 100644
--- a/pato2.py
+++ b/pato2.py
@@ -57,7 +57,7 @@ def sync_all_repo(debug=verbose):
rsout=run_rsync(cmd)
pkgs=pkginfo_from_rsync_output(rsout)
generate_exclude_list_from_blacklist(pkgs,listado(blacklist),debug=False)
- cmd=generate_rsync_command(rsync_update_command,blacklist_file=blacklist)
+ cmd=generate_rsync_command(rsync_update_command,blacklist_file=rsync_blacklist)
a=run_rsync(cmd)
if debug: printf(a)