From 2c7af37274d7023f2b2d6658f345c05bcfbc375c Mon Sep 17 00:00:00 2001 From: lxnay Date: Fri, 25 Jul 2008 13:11:29 +0000 Subject: [PATCH] Entropy/DistributionUGCCommands: - I sometimes am a moron git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2310 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- libraries/entropy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/entropy.py b/libraries/entropy.py index 95afbdd1b..f98056812 100644 --- a/libraries/entropy.py +++ b/libraries/entropy.py @@ -17431,7 +17431,7 @@ class DistributionUGCCommands(SocketCommandsSkel): def docmd_register_stream(self, authenticator, myargs): - myargs = myargs.split() + myargs = myargs[0].split() if len(myargs) < 3: return None,'wrong arguments' @@ -17499,7 +17499,7 @@ class DistributionUGCCommands(SocketCommandsSkel): def docmd_add_comment(self, authenticator, myargs): - myargs = myargs.split() + myargs = myargs[0].split() if len(myargs) < 2: return None,'wrong arguments' @@ -17560,7 +17560,7 @@ class DistributionUGCCommands(SocketCommandsSkel): def docmd_edit_comment(self, authenticator, myargs): - myargs = myargs.split() + myargs = myargs[0].split() if len(myargs) < 2: return None,'wrong arguments'