← Back to team overview

wordpress-charmers team mailing list archive

[Merge] ~barryprice/charm-k8s-wordpress/+git/wordpress-k8s-image-builder:master into ~wordpress-charmers/charm-k8s-wordpress/+git/wordpress-k8s-image-builder:master

 

Barry Price has proposed merging ~barryprice/charm-k8s-wordpress/+git/wordpress-k8s-image-builder:master into ~wordpress-charmers/charm-k8s-wordpress/+git/wordpress-k8s-image-builder:master.

Commit message:
Print themes as they're being downloaded, as well as plugins

Requested reviews:
  Wordpress Charmers (wordpress-charmers)

For more details, see:
https://code.launchpad.net/~barryprice/charm-k8s-wordpress/+git/wordpress-k8s-image-builder/+merge/377649
-- 
Your team Wordpress Charmers is requested to review the proposed merge of ~barryprice/charm-k8s-wordpress/+git/wordpress-k8s-image-builder:master into ~wordpress-charmers/charm-k8s-wordpress/+git/wordpress-k8s-image-builder:master.
diff --git a/fetcher.py b/fetcher.py
index 9f93073..eb6c0b5 100755
--- a/fetcher.py
+++ b/fetcher.py
@@ -110,7 +110,7 @@ def get_themes(branch_themes):
     current_branch = 0
     for branch_theme in branch_themes:
         current_branch = current_branch + 1
-        print('Downloading branched theme {} of {}...'.format(current_branch, total_branches))
+        print('Downloading branched theme {} of {}: {} ...'.format(current_branch, total_branches, branch_theme))
         url = branch_themes[branch_theme].get('url')
         basename = os.path.basename(url)
         if basename.startswith('lp:'):

Follow ups