From 4db3908f4cf3f8578d6dc8d07804f0da248845e2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 2 Jan 2010 23:31:31 +0100 Subject: [PATCH] [activator] fix syntax error --- server/activator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/activator.py b/server/activator.py index 2c0fd1f08..ed808a5f0 100644 --- a/server/activator.py +++ b/server/activator.py @@ -119,7 +119,7 @@ if not entropy.tools.is_root(): main_cmd = options.pop(0) -elif main_cmd == "sync": +if main_cmd == "sync": import server_activator rc = server_activator.sync(options)