Normalize the two listing tools
diff --git a/acceptance/openstack/compute/02-images.go b/acceptance/openstack/compute/02-images.go
index e88556c..8945434 100644
--- a/acceptance/openstack/compute/02-images.go
+++ b/acceptance/openstack/compute/02-images.go
@@ -2,10 +2,10 @@
 
 import (
 	"fmt"
-	"os"
 	"github.com/rackspace/gophercloud/openstack/compute/images"
 	"github.com/rackspace/gophercloud/openstack/identity"
 	"github.com/rackspace/gophercloud/openstack/utils"
+	"os"
 	"text/tabwriter"
 )
 
@@ -37,12 +37,12 @@
 	region := os.Getenv("OS_REGION_NAME")
 	n := 0
 	for _, ep := range eps {
-		client := images.NewClient(ep.PublicURL, a, ao)
-
 		if (region != "") && (region != ep.Region) {
 			continue
 		}
 
+		client := images.NewClient(ep.PublicURL, a, ao)
+
 		listResults, err := images.List(client)
 		if err != nil {
 			panic(err)
@@ -63,7 +63,6 @@
 	fmt.Printf("--------\n%d images listed.\n", n)
 }
 
-
 func findAllComputeEndpoints(sc *identity.ServiceCatalog) ([]identity.Endpoint, error) {
 	ces, err := sc.CatalogEntries()
 	if err != nil {
@@ -78,4 +77,3 @@
 
 	return nil, fmt.Errorf("Compute endpoint not found.")
 }
-