Fixed = parsing

i18n
Michal 2 years ago
parent 39ecbc0dac
commit 22dfb90be5
No known key found for this signature in database
GPG Key ID: A6A1A4DCB22279B9

@ -3,7 +3,7 @@ use regex::Regex;
use crate::{log, Options};
pub fn clean(a: &[String], options: Options) -> Vec<String> {
let r = Regex::new(r"(\S+)((?:>=|<=|>|<|=)\S+$)").unwrap();
let r = Regex::new(r"(\S+)((?:>=|<=|>|<|=\W)\S+$)").unwrap();
let mut cleaned: Vec<String> = vec![];
let verbosity = options.verbosity;

Loading…
Cancel
Save