Skip to content

Commit

Permalink
vpoller-worker: Specify the configuration file being used in the erro…
Browse files Browse the repository at this point in the history
…r message
  • Loading branch information
dnaeon committed Oct 23, 2014
1 parent 7d72a4f commit 5b47351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vpoller-worker
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Options:
args = docopt(usage, version='0.3.3')

if not os.path.exists(args['--file']):
raise SystemExit, 'Configuration file %s does not exist'
raise SystemExit, 'Configuration file %s does not exist' % args['--file']

level = logging.DEBUG if args['--debug'] else logging.INFO
logging.basicConfig(
Expand Down

0 comments on commit 5b47351

Please sign in to comment.