Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-network-client
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@sugarlabs.org>2013-07-27 22:55:36 (GMT)
committer Aleksey Lim <alsroot@sugarlabs.org>2013-07-27 22:55:36 (GMT)
commit0588c35a452d365f3a56e1d0c7fe46f65957d9da (patch)
tree88d0b800e35459b4de5dc3128aced986b520aed6 /sugar-network-client
parent5224a51b3e9b78b54aa108f750681d55ad95ef6f (diff)
Remove remains after files moving
Diffstat (limited to 'sugar-network-client')
-rwxr-xr-xsugar-network-client8
1 files changed, 4 insertions, 4 deletions
diff --git a/sugar-network-client b/sugar-network-client
index b034d0a..3b14d1e 100755
--- a/sugar-network-client
+++ b/sugar-network-client
@@ -31,7 +31,7 @@ from sugar_network.client.routes import CachedClientRoutes
from sugar_network.node import stats_node, stats_user
from sugar_network.model import RESOURCES
from sugar_network.toolkit.router import Router
-from sugar_network.toolkit import mountpoints, util, printf, application
+from sugar_network.toolkit import mountpoints, printf, application
from sugar_network.toolkit import Option, coroutine
@@ -43,7 +43,7 @@ class Application(application.Daemon):
node.sync_layers.value = client.layers.value
self.jobs = coroutine.Pool()
- util.init_logging(application.debug.value)
+ toolkit.init_logging(application.debug.value)
new_root = (client.local_root.value != client.local_root.default)
client.local_root.value = abspath(client.local_root.value)
@@ -104,7 +104,7 @@ class Application(application.Daemon):
self.cmd_start()
def run(self):
- util.ensure_key(client.key_path())
+ toolkit.ensure_key(client.key_path())
volume = db.Volume(client.path('db'), RESOURCES)
routes = CachedClientRoutes(volume,
client.api_url.value if not client.server_mode.value else None)
@@ -153,7 +153,7 @@ class Application(application.Daemon):
try:
self.jobs.join()
except KeyboardInterrupt:
- util.exception('%s interrupted', self.name)
+ toolkit.exception('%s interrupted', self.name)
finally:
self.jobs.kill()
routes.close()