Setting up multiple accounts using the session manager

This commit is contained in:
2015-03-03 13:41:41 -06:00
parent 188d95ad6c
commit 632e54a727
3 changed files with 7 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ class sessionManagerController(object):
session.sessions[i] = s
def manage_new_account(self):
location = (str(time.time())[:6])
location = (str(time.time())[-6:])
log.debug("Creating session in the %s path" % (location,))
s = session.Session(location)
manager.manager.add_session(location)