diff --git a/src/calibre/ebooks/epub/from_html.py b/src/calibre/ebooks/epub/from_html.py
index 3552a1bf70..ae4be49ddb 100644
--- a/src/calibre/ebooks/epub/from_html.py
+++ b/src/calibre/ebooks/epub/from_html.py
@@ -62,7 +62,7 @@ def remove_bad_link(element, attribute, link, pos):
def check(opf_path, pretty_print):
'''
- Find a remove all invalid links in the HTML files
+ Find and remove all invalid links in the HTML files
'''
logger = logging.getLogger('html2epub')
logger.info('\tChecking files for bad links...')
diff --git a/src/calibre/ebooks/lit/from_any.py b/src/calibre/ebooks/lit/from_any.py
index 75cfc01bc2..cda70e189a 100644
--- a/src/calibre/ebooks/lit/from_any.py
+++ b/src/calibre/ebooks/lit/from_any.py
@@ -38,6 +38,7 @@ def any2lit(opts, path):
os.mkdir(oebdir)
opts.output = os.path.join(tdir, 'dummy.epub')
opts.extract_to = oebdir
+ opts.profile = 'None'
any2epub(opts, path)
opf = glob.glob(os.path.join(oebdir, '*.opf'))[0]
opts.output = orig_output