def pull(): """Launch the 'pull' remote dialog.""" from cola.controllers.remote import remote_action return remote_action('pull')
def fetch(): """Launch the 'fetch' remote dialog.""" from cola.controllers.remote import remote_action remote_action('fetch')
def pull(parent): """Launch the 'pull' remote dialog.""" from cola.controllers.remote import remote_action remote_action(parent, 'pull')
def pull(self): """Launch the 'pull' remote dialog.""" remote_action(self, 'pull')
def push(self): """Launch the 'push' remote dialog.""" remote_action(self, 'push')
def fetch(self): """Launch the 'fetch' remote dialog.""" remote_action(self, 'fetch')