[Openstack-poc] [Bug 943336] Re: New requirements never get written out

2012-05-04 Thread Jason Kölker
** Changed in: openstack-common Assignee: Jason Kölker (jason-koelker) => Monty Taylor (mordred) -- You received this bug notification because you are a member of OpenStack Common Drivers, which is the registrant for openstack-common. https://bugs.launchpad.net/bugs/943336 Title:

[Openstack-poc] [Bug 951197] [NEW] openstack namespace does not play nicely with checkedout repos

2012-03-09 Thread Jason Kölker
temporary" workaround for incubation we *could* hack it to inject ./openstack/common into the openstack namespace, but there might be a better way. Need to research. ** Affects: openstack-common Importance: Undecided Assignee: Jason Kölker (jason-koelker) Status: Confirmed *

[Openstack-poc] [Bug 943336] [NEW] New requirements never get written out

2012-02-29 Thread Jason Kölker
Public bug reported: write_requirements is failing to write out requirements.txt on a new virtualenv/checkout. Need to figure out what's going on. ** Affects: openstack-common Importance: Undecided Status: Confirmed -- You received this bug notification because you are a member of

[Openstack-poc] [Bug 943336] Re: New requirements never get written out

2012-02-29 Thread Jason Kölker
oh yea, its in openstack.common.setup ;) ** Changed in: openstack-common Status: New => Confirmed -- You received this bug notification because you are a member of OpenStack Common Drivers, which is the registrant for openstack-common. https://bugs.launchpad.net/bugs/943336 Title: New

[Openstack-poc] [Bug 925775] Re: utils.import_object sometimes masks the failed import

2012-02-02 Thread Jason Kölker
** Changed in: openstack-common Status: New => Confirmed -- You received this bug notification because you are a member of OpenStack Common Drivers, which is the registrant for openstack-common. https://bugs.launchpad.net/bugs/925775 Title: utils.import_object sometimes masks the failed

[Openstack-poc] [Bug 925775] [NEW] utils.import_object sometimes masks the failed import

2012-02-02 Thread Jason Kölker
Public bug reported: 146 def import_class(import_str): 147 """Returns a class from a string including module and class""" 148 mod_str, _sep, class_str = import_str.rpartition('.') 149 try: 150 __import__(mod_str) 151 return getattr(sys.modules[mod_str], class_str) 152