mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-22 20:23:09 +02:00
fix merge error
This commit is contained in:
parent
47cd051bd7
commit
d832b0b859
3 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ define_subcommand! {
|
|||
|
||||
subcommand_invocation! {
|
||||
fn run(&self, command: &CommandInvocation) -> Fallible<()> {
|
||||
let mut replica = command.get_replica();
|
||||
let mut replica = command.get_replica()?;
|
||||
let task = shared::get_task(&mut replica, &self.task)?;
|
||||
|
||||
let mut t = Table::new();
|
||||
|
|
|
@ -28,7 +28,7 @@ define_subcommand! {
|
|||
|
||||
subcommand_invocation! {
|
||||
fn run(&self, command: &CommandInvocation) -> Fallible<()> {
|
||||
let mut replica = command.get_replica();
|
||||
let mut replica = command.get_replica()?;
|
||||
let task = shared::get_task(&mut replica, &self.task)?;
|
||||
task.into_mut(&mut replica).start()?;
|
||||
Ok(())
|
||||
|
|
|
@ -28,7 +28,7 @@ define_subcommand! {
|
|||
|
||||
subcommand_invocation! {
|
||||
fn run(&self, command: &CommandInvocation) -> Fallible<()> {
|
||||
let mut replica = command.get_replica();
|
||||
let mut replica = command.get_replica()?;
|
||||
let task = shared::get_task(&mut replica, &self.task)?;
|
||||
task.into_mut(&mut replica).stop()?;
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue