remove deprecated default master file name setting from config file
This commit is contained in:
parent
78ff6c693a
commit
d952a22591
2 changed files with 3 additions and 4 deletions
|
@ -15,7 +15,6 @@ DATE_FORMAT = '%a %d %b %Y'
|
||||||
LOCALE = "de_DE.utf8"
|
LOCALE = "de_DE.utf8"
|
||||||
COURSE_IGNORE_FILE = '.courseignore'
|
COURSE_IGNORE_FILE = '.courseignore'
|
||||||
COURSE_INFO_FILE_NAME = 'info.yaml'
|
COURSE_INFO_FILE_NAME = 'info.yaml'
|
||||||
DEFAULT_MASTER_FILE_NAME = 'master.tex'
|
|
||||||
MAX_LEN = 40
|
MAX_LEN = 40
|
||||||
LECTURE_START_MARKER = 'start lectures'
|
LECTURE_START_MARKER = 'start lectures'
|
||||||
LECTURE_END_MARKER = 'end lectures'
|
LECTURE_END_MARKER = 'end lectures'
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
import subprocess
|
import subprocess
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from lectures import Lectures, number2filename
|
from config import LECTURE_START_MARKER, LECTURE_END_MARKER, DEFAULT_IMPORT_INDENTATION
|
||||||
from config import DEFAULT_MASTER_FILE_NAME, LECTURE_START_MARKER, LECTURE_END_MARKER, DEFAULT_IMPORT_INDENTATION
|
|
||||||
from parse_counters import parse_counters, dict2setcounters
|
|
||||||
from edit import edit
|
from edit import edit
|
||||||
|
from lectures import Lectures, number2filename
|
||||||
|
from parse_counters import parse_counters, dict2setcounters
|
||||||
|
|
||||||
|
|
||||||
class Notes:
|
class Notes:
|
||||||
|
|
Loading…
Reference in a new issue