Skip to content

Commit

Permalink
Fixes LP Bug#872276 - small typo in error message
Browse files Browse the repository at this point in the history
Add a missing s to a % formatted print statement
Add my name to Authors file

Change-Id: Ib086fb9bee6f55a3bd89f3108269050c6eb0f8b9
  • Loading branch information
Tomas Hancock committed Oct 12, 2011
1 parent e2555e1 commit 6aacf23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Authors
Expand Up @@ -28,5 +28,6 @@ Rick Harris <rconradharris@gmail.com>
Soren Hansen <soren.hansen@rackspace.com>
Taku Fukushima <tfukushima@dcl.info.waseda.ac.jp>
Thierry Carrez <thierry@openstack.org>
Tom Hancock <tom.hancock@hp.com>
Vishvananda Ishaya <vishvananda@gmail.com>
Yuriy Taraday <yorik.sar@gmail.com>
2 changes: 1 addition & 1 deletion bin/glance
Expand Up @@ -938,7 +938,7 @@ option is given, <MEMBER> will be able to further share the image."""
c.add_member(image_id, member_id, options.can_share)
else:
print "Dry run. We would have done the following:"
print ('Add "%(member_id)" to membership of image %(image_id)s'
print ('Add "%(member_id)s" to membership of image %(image_id)s'
% locals())
if options.can_share:
print "New member would have been able to further share image."
Expand Down

0 comments on commit 6aacf23

Please sign in to comment.