diff options
author | andy <github@anarkystic.com> | 2010-08-16 14:16:21 +0200 |
---|---|---|
committer | andy <github@anarkystic.com> | 2010-08-16 14:16:21 +0200 |
commit | d508418214016d5c00aa8d304f9498f5b99a960b (patch) | |
tree | b414d1de4b7bf688c66c3180e9e7c5478ebcbc37 /nova/fakerabbit.py | |
parent | c395dd793d84d1e9a3e0ac9c9c4044c50eea6399 (diff) | |
download | nova-d508418214016d5c00aa8d304f9498f5b99a960b.tar.gz nova-d508418214016d5c00aa8d304f9498f5b99a960b.tar.xz nova-d508418214016d5c00aa8d304f9498f5b99a960b.zip |
rather comprehensive style fixes
Diffstat (limited to 'nova/fakerabbit.py')
-rw-r--r-- | nova/fakerabbit.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/fakerabbit.py b/nova/fakerabbit.py index 689194513..068025249 100644 --- a/nova/fakerabbit.py +++ b/nova/fakerabbit.py @@ -16,12 +16,13 @@ # License for the specific language governing permissions and limitations # under the License. -""" Based a bit on the carrot.backeds.queue backend... but a lot better """ +"""Based a bit on the carrot.backeds.queue backend... but a lot better.""" -from carrot.backends import base import logging import Queue as queue +from carrot.backends import base + class Message(base.BaseMessage): pass |