Code review comment for lp:~bellini666/stoq-bzr/keep_rc_settings

Revision history for this message
Ronaldo Maia (romaia) wrote :

21 + # FIXME: Find a way to get the directory name for stoq plugin,
22 + # to avoid hardcoding 'stoq' bellow.
23 + rcfile = os.path.join(plugin.get_user_plugin_path(), 'stoq',
24 + self.RCFILE)

Para esse fixme:

dir_name = os.path.dirname(os.path.abspath(__file__))
rcfile = os.path.join(dir_name, self.RCFILE)

Tirando isso, por mim está bom.

review: Approve

« Back to merge proposal