Skip to content

Commit

Permalink
update name of start_export_vm function
Browse files Browse the repository at this point in the history
  • Loading branch information
Allie Crevier committed Jan 8, 2020
1 parent ac163bc commit 08a35ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions securedrop_client/gui/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2132,7 +2132,7 @@ def __init__(self, controller: Controller, file_uuid: str, file_name: str):
'Please try reconnecting your printer, or see your administrator for help.')

self._show_starting_instructions()
self.controller.start_export_vm()
self.controller.run_start_export_vm()

def _show_starting_instructions(self):
self.header.setText(self.starting_header)
Expand Down Expand Up @@ -2267,7 +2267,7 @@ def __init__(self, controller: Controller, file_uuid: str, file_name: str):
self.passphrase_form.hide()

self._show_starting_instructions()
self.controller.start_export_vm()
self.controller.run_start_export_vm()

def _show_starting_instructions(self):
self.header.setText(self.starting_header)
Expand Down
2 changes: 1 addition & 1 deletion securedrop_client/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def on_file_open(self, file_uuid: str) -> None:
process = QProcess(self)
process.start(command, args)

def start_export_vm(self):
def run_start_export_vm(self):
logger.info('Starting Export VM')

if not self.qubes:
Expand Down

0 comments on commit 08a35ef

Please sign in to comment.