about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorRey Tucker <git@reytucker.us>2018-03-27 11:30:49 -0400
committerRey Tucker <git@reytucker.us>2018-03-27 11:30:49 -0400
commit21b586436ea94c1fa6c07e2fc8d493a876f23c2f (patch)
treee476297c16695ae99da7fc2891552efc9fe2c65b /app
parent6af17b79c57b95a39fb4ed325aeff3edf02162ea (diff)
Remove ignored 'u' parameter on regexp (#392)
Diffstat (limited to 'app')
-rw-r--r--app/lib/frontmatter_handler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/frontmatter_handler.rb b/app/lib/frontmatter_handler.rb
index a95a1e294..fa787630d 100644
--- a/app/lib/frontmatter_handler.rb
+++ b/app/lib/frontmatter_handler.rb
@@ -10,7 +10,7 @@ class FrontmatterHandler
   #  CONVENIENCE FUNCTIONS  #
 
   def self.unirex(str)
-    Regexp.new str, Regexp::MULTILINE, 'u'
+    Regexp.new str, Regexp::MULTILINE
   end
   def self.rexstr(exp)
     '(?:' + exp.source + ')'