Skip to content

Commit

Permalink
Missing parentheses on function call in settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
malderete committed Mar 2, 2013
1 parent 26088a5 commit 191d5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninja_ide/core/settings.py
Expand Up @@ -434,7 +434,7 @@ def load_settings():
USE_TABS = qsettings.value('preferences/editor/useTabs', 'false') == 'true' USE_TABS = qsettings.value('preferences/editor/useTabs', 'false') == 'true'
if USE_TABS: if USE_TABS:
pep8mod_add_ignore("W191") pep8mod_add_ignore("W191")
pep8mod_refresh_checks pep8mod_refresh_checks()
ALLOW_WORD_WRAP = qsettings.value( ALLOW_WORD_WRAP = qsettings.value(
'preferences/editor/allowWordWrap', 'false') == 'true' 'preferences/editor/allowWordWrap', 'false') == 'true'
COMPLETE_DECLARATIONS = qsettings.value( COMPLETE_DECLARATIONS = qsettings.value(
Expand Down

0 comments on commit 191d5a9

Please sign in to comment.