summaryrefslogtreecommitdiffstats
path: root/nova/context.py
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-10-14 00:30:42 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-10-14 00:30:42 -0700
commit914786b8f9d30e2762e290ef911710efcbe6d310 (patch)
tree7f0edec63a89658c4b10c4fe824e7d1f1e84c7c9 /nova/context.py
parentaf9910d935b7b3839774e3485b87b4a0dcdb78ff (diff)
downloadnova-914786b8f9d30e2762e290ef911710efcbe6d310.tar.gz
nova-914786b8f9d30e2762e290ef911710efcbe6d310.tar.xz
nova-914786b8f9d30e2762e290ef911710efcbe6d310.zip
review fixes
Diffstat (limited to 'nova/context.py')
-rw-r--r--nova/context.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/context.py b/nova/context.py
index 977866d59..2a94d643d 100644
--- a/nova/context.py
+++ b/nova/context.py
@@ -63,7 +63,7 @@ class RequestContext(object):
@property
def user(self):
- # NOTE(visn): Delay import of manager, so that we can import this
+ # NOTE(vish): Delay import of manager, so that we can import this
# file from manager.
from nova.auth import manager
if not self._user:
@@ -72,7 +72,7 @@ class RequestContext(object):
@property
def project(self):
- # NOTE(visn): Delay import of manager, so that we can import this
+ # NOTE(vish): Delay import of manager, so that we can import this
# file from manager.
from nova.auth import manager
if not self._project:
@@ -85,7 +85,7 @@ class RequestContext(object):
'is_admin': self.is_admin,
'read_deleted': self.read_deleted,
'remote_address': self.remote_address,
- 'timestamp': utils.isotime(),
+ 'timestamp': utils.isotime(self.timestamp),
'request_id': self.request_id}
@classmethod