Skip to content

Commit

Permalink
BeautifulSoup 3 is no longer maintained, switch to bs4
Browse files Browse the repository at this point in the history
Also needed for Python 3 compliance.

Belonging to [master]:
  - OpenModelica/OMCompiler#2840
  • Loading branch information
dietmarw authored and OpenModelica-Hudson committed Dec 20, 2018
1 parent 4eda4f7 commit 802d9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/GenerateDoc.mos
Expand Up @@ -309,7 +309,7 @@ writeFile(filetmp, "</body>\n</html>", append = true);
writeFile("Tidy.py","#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import with_statement
from BeautifulSoup import BeautifulSoup
from bs4 import BeautifulSoup
import subprocess as sub
import re
import glob
Expand Down

0 comments on commit 802d9c8

Please sign in to comment.