From f6fde4b55326c7fe3821c05d64fb00d2c36c4ef4 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Sat, 20 Oct 2012 18:27:35 +0200 Subject: [PATCH] Fix bug #8379: LyX Archive fails to include BibTeX files --- lib/scripts/lyxpak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/scripts/lyxpak.py b/lib/scripts/lyxpak.py index d34197799e..4d10cb6417 100755 --- a/lib/scripts/lyxpak.py +++ b/lib/scripts/lyxpak.py @@ -160,7 +160,7 @@ def gather_files(curfile, incfiles, lyx2lyx): j = 0 while j < len(bibfiles): if os.path.isabs(bibfiles[j]): - file = bibfiles[j] + file = bibfiles[j] + '.bib' else: file = os.path.join(curdir, bibfiles[j] + '.bib') if os.path.exists(file):