Skip to content

Commit

Permalink
Fix pylint:disable syntax in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Moguri committed Apr 18, 2019
1 parent 020b7dd commit 02829ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def update_rman(self):
pman_conf = pman.get_config(self.workingdir)
self.renderer = pman.create_renderer(self, pman_conf)
except pman.NoConfigError:
from pman import basicrenderer # pylint:disable no-name-in-module
from pman import basicrenderer # pylint:disable=no-name-in-module
print('No configuration found, falling back to basic renderer')
self.renderer = basicrenderer.BasicRenderer(self)

Expand Down

0 comments on commit 02829ec

Please sign in to comment.