Skip to content

Commit

Permalink
Merge pull request #27 from mokshaproject/feature/common-fix
Browse files Browse the repository at this point in the history
Fix broken import.
  • Loading branch information
lmacken committed May 15, 2015
2 parents 7fd917d + f9460a7 commit 8454a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moksha.common/moksha/common/commands/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class MokshaCLI(object):

def _exec(self, process, *args, **kw):
args = args and [process] + list(args) or [process]
print("Running %s" % ' '.join(args))
print("Running %r" % (args,))
pp = MokshaProcessProtocol(name=process)
process = reactor.spawnProcess(pp, process, args,
env={'PYTHONPATH': os.getcwd()}, **kw)
Expand All @@ -54,7 +54,7 @@ def _exec(self, process, *args, **kw):
def start(self):
""" Start all of the Moksha components """

from moksha.lib.helpers import get_moksha_config_path
from moksha.common.lib.helpers import get_moksha_config_path

orbited = ['orbited']
if os.path.exists('/etc/moksha/orbited.cfg'):
Expand Down

0 comments on commit 8454a26

Please sign in to comment.