From 8d0df6654c64ec1d3029fbad287c6adeb6d9b5aa Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sat, 27 Apr 2019 16:48:04 +1000 Subject: [PATCH] Ignore migration files --- docs/conf.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d434752fac..29db84e819 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,8 +19,7 @@ sys.path.append(os.path.abspath('../InvenTree')) # -- Project information ----------------------------------------------------- project = 'InvenTree' -copyright = '2019, Oliver Walters' -author = 'Oliver Walters' +copyright = '2019, InvenTree' # -- General configuration --------------------------------------------------- @@ -48,8 +47,8 @@ exclude_patterns = [ '_build', 'Thumbs.db', '.DS_Store', - '**/migrations/', - '**/migrations', + 'manage.rst', # Ignore django management file + '**/*.migrations*.rst', # Ignore migration files ]