From 0f0a20fa4ab9e29524cd7f30036d2a5e4b9b654e Mon Sep 17 00:00:00 2001 From: Uriziel Date: Wed, 19 Sep 2012 17:14:12 +0200 Subject: [PATCH] Continuation of utils => ConfigurationGetter split --- syncplay/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syncplay/client.py b/syncplay/client.py index 98ff8c6..529fc40 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -525,7 +525,7 @@ class SyncplayClientManager(object): self.users.append(SyncplayClientManager.SyncplayUser(username, filename, None)) from syncplay import ui -from syncplay import utils +from syncplay.ConfigurationGetter import ConfigurationGetter class SyncplayClient(object): def __init__(self): @@ -535,7 +535,7 @@ class SyncplayClient(object): self.argsGetter.saveValuesIntoConfigFile() def _prepareArguments(self): - self.argsGetter = utils.ConfigurationGetter() + self.argsGetter = ConfigurationGetter() self.args = self.argsGetter.getConfiguration() def _promptForMissingArguments(self):