diff options
| author | Jokler <jokler.contact@gmail.com> | 2018-02-13 16:18:42 +0100 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2018-02-13 16:18:42 +0100 |
| commit | 968c837365c4a332fe3c802fd4ecab2562eb4d5a (patch) | |
| tree | 4ad922c19536fcf4630c4cae624946cfadea66ef /src/plugins/tell.rs | |
| parent | d08eb3db79e702a729324e06ed8f6ab86c8355e3 (diff) | |
| download | frippy-968c837365c4a332fe3c802fd4ecab2562eb4d5a.tar.gz frippy-968c837365c4a332fe3c802fd4ecab2562eb4d5a.zip | |
Replace try_option with ?
Diffstat (limited to 'src/plugins/tell.rs')
| -rw-r--r-- | src/plugins/tell.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/tell.rs b/src/plugins/tell.rs index 3ec9586..34d7cf8 100644 --- a/src/plugins/tell.rs +++ b/src/plugins/tell.rs @@ -77,7 +77,10 @@ impl Tell { ) { return ExecutionStatus::Err(e); } - debug!("Sent {:?} from {:?} to {:?}", tell.message, tell.sender, receiver); + debug!( + "Sent {:?} from {:?} to {:?}", + tell.message, tell.sender, receiver + ); } } tells.remove(receiver); |
