aboutsummaryrefslogtreecommitdiffstats
path: root/minidinstall/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'minidinstall/misc.py')
-rw-r--r--minidinstall/misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/minidinstall/misc.py b/minidinstall/misc.py
index 5f7fb71..4c72ceb 100644
--- a/minidinstall/misc.py
+++ b/minidinstall/misc.py
@@ -37,7 +37,7 @@ def dup2(fd, fd2):
def format_changes(L):
""" remove changelog header and all lines with only a dot """
- dotmatch = re.compile('^\.$')
+ dotmatch = re.compile('^\\.$')
L1 = []
for x in L[3:]: