Remove unused return value from take_action

This commit removes return values from take_action(). Because they are
unused in cliff[1] and to prevent developers misunderstanding.

[1]
http://git.openstack.org/cgit/openstack/cliff/tree/cliff/command.py#n55

Change-Id: I1a81e163acae17005f49decb8cb7ffee52944d26
diff --git a/tempest/cmd/account_generator.py b/tempest/cmd/account_generator.py
index 249261b..9e1d391 100755
--- a/tempest/cmd/account_generator.py
+++ b/tempest/cmd/account_generator.py
@@ -277,12 +277,11 @@
 
     def take_action(self, parsed_args):
         try:
-            return main(parsed_args)
+            main(parsed_args)
         except Exception:
             LOG.exception("Failure generating test accounts.")
             traceback.print_exc()
             raise
-        return 0
 
     def get_description(self):
         return DESCRIPTION