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"
|
||||
COURSE_IGNORE_FILE = '.courseignore'
|
||||
COURSE_INFO_FILE_NAME = 'info.yaml'
|
||||
DEFAULT_MASTER_FILE_NAME = 'master.tex'
|
||||
MAX_LEN = 40
|
||||
LECTURE_START_MARKER = 'start lectures'
|
||||
LECTURE_END_MARKER = 'end lectures'
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
import subprocess
|
||||
from pathlib import Path
|
||||
|
||||
from lectures import Lectures, number2filename
|
||||
from config import DEFAULT_MASTER_FILE_NAME, LECTURE_START_MARKER, LECTURE_END_MARKER, DEFAULT_IMPORT_INDENTATION
|
||||
from parse_counters import parse_counters, dict2setcounters
|
||||
from config import LECTURE_START_MARKER, LECTURE_END_MARKER, DEFAULT_IMPORT_INDENTATION
|
||||
from edit import edit
|
||||
from lectures import Lectures, number2filename
|
||||
from parse_counters import parse_counters, dict2setcounters
|
||||
|
||||
|
||||
class Notes:
|
||||
|
|
Loading…
Reference in a new issue