Mirror script output parsing fix.

* jeepyb/cmd/run_mirror.py: Output parsing for pip install
--no-install was looking for "Successfully installed" when it should
have been looking for "Successfully downloaded" instead. This fixes.

Change-Id: Iaee9e95f8cb035a2c1a398cedb62ab3738c5ef35
Reviewed-on: https://review.openstack.org/23469
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
diff --git a/jeepyb/cmd/run_mirror.py b/jeepyb/cmd/run_mirror.py
index 755d72b..73b18bb 100644
--- a/jeepyb/cmd/run_mirror.py
+++ b/jeepyb/cmd/run_mirror.py
@@ -150,7 +150,7 @@
                                       PIP_DOWNLOAD_CACHE, reqs))
                     if DEBUG:
                         print(out)
-                    if "\nSuccessfully installed " not in out:
+                    if "\nSuccessfully downloaded " not in out:
                         sys.stderr.write(out)
                         print("pip install did not indicate success")
                     print("cached:\n%s" % freeze)