diff options
author | jaypipes@gmail.com <> | 2010-12-14 18:22:03 -0500 |
---|---|---|
committer | jaypipes@gmail.com <> | 2010-12-14 18:22:03 -0500 |
commit | 797e3f8a1cc72599aa8540b5655e29da8975e56f (patch) | |
tree | aee7d69d4eaf55cfee56dcd7083bfbf6ea7c2005 /bin/nova-network | |
parent | a6645d8a431ed933eef4ea6c42c0224ead6f2272 (diff) | |
download | nova-797e3f8a1cc72599aa8540b5655e29da8975e56f.tar.gz |
For some reason, I forgot to commit the other endpoints...
Diffstat (limited to 'bin/nova-network')
-rwxr-xr-x | bin/nova-network | 3 |
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 |