summaryrefslogtreecommitdiff
path: root/bin/nova-network
diff options
context:
space:
mode:
authorjaypipes@gmail.com <>2010-12-14 18:22:03 -0500
committerjaypipes@gmail.com <>2010-12-14 18:22:03 -0500
commit797e3f8a1cc72599aa8540b5655e29da8975e56f (patch)
treeaee7d69d4eaf55cfee56dcd7083bfbf6ea7c2005 /bin/nova-network
parenta6645d8a431ed933eef4ea6c42c0224ead6f2272 (diff)
downloadnova-797e3f8a1cc72599aa8540b5655e29da8975e56f.tar.gz
For some reason, I forgot to commit the other endpoints...
Diffstat (limited to 'bin/nova-network')
-rwxr-xr-xbin/nova-network3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/nova-network b/bin/nova-network
index d1fb552612..86d04c723d 100755
--- a/bin/nova-network
+++ b/bin/nova-network
@@ -21,6 +21,7 @@
Twistd daemon for the nova network nodes.
"""
+import gettext
import os
import sys
@@ -32,6 +33,8 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(possible_topdir, 'nova', '__init__.py')):
sys.path.insert(0, possible_topdir)
+gettext.install('nova', unicode=1)
+
from nova import service
from nova import twistd
from nova import utils