Skip to content

Commit

Permalink
'is_rtd' in conf.py is actually logically inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Apr 3, 2017
1 parent 09c0e73 commit ac80c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
is_rtd = os.environ.get('READTHEDOCS', None) != 'True'
readthedocs_version = os.environ.get('READTHEDOCS_VERSION', '')

if is_rtd:
if not is_rtd:
os.environ['SETTINGS_MODULE'] = 'biweeklybudget.settings_example'

rtd_version = VERSION
Expand Down

0 comments on commit ac80c6b

Please sign in to comment.