Guest User

Untitled

a guest
Nov 20th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.50 KB | None | 0 0
  1. $ grep Client /usr/share/pyshared/glance/client.py
  2. Client classes for callers of a Glance system
  3. class V1Client(base_client.BaseClient):
  4.             c = glance.client.Client(...)
  5.             c = glance.client.Client(...)
  6.             c = glance.client.Client(...)
  7. class ProgressClient(V1Client):
  8.         wrapped = super(ProgressClient, self).image_iterator(connection,
  9. Client = V1Client
  10.         raise exception.ClientConfigurationError(msg)
  11.     client = (ProgressClient if not is_silent_upload else Client)
Advertisement
Add Comment
Please, Sign In to add comment