Merge commit 'origin/master'
[plcapi.git] / PLC / Methods / GetSessions.py
index a72553c..5e84017 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -14,7 +16,7 @@ class GetSessions(Method):
     filter will be returned. If return_fields is specified, only the
     specified details will be returned.
 
-    
+
     """
 
     roles = ['admin']
@@ -27,9 +29,9 @@ class GetSessions(Method):
         ]
 
     returns = [Session.fields]
-    
+
     def call(self, auth, session_filter = None):
 
         sessions = Sessions(self.api, session_filter)
-       
-       return sessions
+
+        return sessions