summaryrefslogtreecommitdiffstats
path: root/melib/src/datetime.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-06-22 11:33:03 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-06-22 11:33:03 +0300
commitca11c8e474922271e3d647df74df8428d55d6a54 (patch)
treee24bc74b91d16bdce42d02d8edee9cc490205820 /melib/src/datetime.rs
parent34ed9e201464419db79792e35d3b2731d3766cce (diff)
Remove useless debug prints
Diffstat (limited to 'melib/src/datetime.rs')
-rw-r--r--melib/src/datetime.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/melib/src/datetime.rs b/melib/src/datetime.rs
index ea48dba5..0aac21fe 100644
--- a/melib/src/datetime.rs
+++ b/melib/src/datetime.rs
@@ -228,7 +228,7 @@ where
};
if let Ok(idx) = TIMEZONE_ABBR.binary_search_by(|probe| probe.0.cmp(rest)) {
- let (hr_offset, min_offset) = debug!(TIMEZONE_ABBR[idx]).1;
+ let (hr_offset, min_offset) = TIMEZONE_ABBR[idx].1;
(hr_offset as i64) * 60 * 60 + (min_offset as i64) * 60
} else {
0