~marceloshima/tacix/0.1

« back to all changes in this revision

Viewing changes to tacix/freenx/FreeNXNode.py

  • Committer: Marcelo Boveto Shima
  • Date: 2009-08-06 04:39:10 UTC
  • Revision ID: mshima@sempron-20090806043910-elbliq3p80b9tgg5
Lots of fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
        try:
105
105
            if options['type'] == 'shadow':
106
106
                self.say_shadowsession_header(options)
107
 
                sessions = self.manager.GetShadowableSessions()
 
107
                sessions = self.provider.GetShadowableSessions()
108
108
                for session_key in sessions.keys():
109
109
                    self.say_listsessions_sessions(sessions[session_key])
110
110
 
130
130
 
131
131
    def _startsession_handler(self, line):
132
132
        opts = self.opt_read(line)
133
 
        self.start_session(opts)
 
133
        self.start_session(opts, 'nx')
134
134
        return True
135
135
 
136
136
    def _listsession_handler(self, line):