Merge lp:~soren/nova/credits into lp:~hudson-openstack/nova/trunk

Proposed by Soren Hansen
Status: Merged
Approved by: Rick Clark
Approved revision: 403
Merged at revision: 421
Proposed branch: lp:~soren/nova/credits
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
setup.py (+1/-1)
To merge this branch: bzr merge lp:~soren/nova/credits
Reviewer Review Type Date Requested Status
Rick Clark (community) Approve
Review via email: mp+41739@code.launchpad.net

Commit message

Fix typo "nova.util" -> "nova.utils".

Description of the change

Fix typo "nova.util" -> "nova.utils".

I'll add a little something to the tests tonight to catch this sort of stuff. It's happened a lot lately (that "python setup.py sdist" fails)

To post a comment you must log in.
Revision history for this message
Rick Clark (dendrobates) wrote :

Not a typo from the infallible Soren? :)

review: Approve
Revision history for this message
Soren Hansen (soren) wrote :

2010/11/24 Rick Clark <email address hidden>:
> Review: Approve
> Not a typo from the infallible Soren?  :)

<jedi mind trick>This never happened</jedi mind trick>

--
Soren Hansen
Ubuntu Developer    http://www.ubuntu.com/
OpenStack Developer http://www.openstack.org/

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'setup.py'
2--- setup.py 2010-11-22 21:27:15 +0000
3+++ setup.py 2010-11-24 14:18:30 +0000
4@@ -23,7 +23,7 @@
5 from setuptools.command.sdist import sdist
6 from sphinx.setup_command import BuildDoc
7
8-from nova.util import parse_mailmap, str_dict_replace
9+from nova.utils import parse_mailmap, str_dict_replace
10
11 class local_BuildDoc(BuildDoc):
12 def run(self):