Skip to content

Commit

Permalink
Merge pull request #47 from lukaszb/fix/config-ini-issue
Browse files Browse the repository at this point in the history
Fixed missing config.inifile attribute issue
  • Loading branch information
joeyespo committed Mar 4, 2016
2 parents 40f4b62 + ad05c2b commit a34bac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_watch/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self):
self.path = None

def pytest_cmdline_main(self, config):
if config.inifile:
if getattr(config, 'inifile', None):
self.path = str(config.inifile)


Expand Down

0 comments on commit a34bac7

Please sign in to comment.