lib/jekyll/migrators/mephisto.rb in jekyll-0.7.0 vs lib/jekyll/migrators/mephisto.rb in jekyll-0.8.0

- old
+ new

@@ -38,10 +38,10 @@ # through the created posts to make sure nothing is accidently published. QUERY = "SELECT id, permalink, body, published_at, title FROM contents WHERE user_id = 1 AND type = 'Article' AND published_at IS NOT NULL ORDER BY published_at" def self.process(dbname, user, pass, host = 'localhost') - db = Sequel.mysql(dbname, :user => user, :password => pass, :host => host) + db = Sequel.mysql(dbname, :user => user, :password => pass, :host => host, :encoding => 'utf8') FileUtils.mkdir_p "_posts" db[QUERY].each do |post| title = post[:title]