~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to bin/ivle-createdatadirs

  • Committer: Matt Giuca
  • Date: 2009-12-08 05:05:20 UTC
  • Revision ID: matt.giuca@gmail.com-20091208050520-a4nmmjxwtmhip063
ivle-createdatadirs: Fixed exit -- if path already exists, log and exit(0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import os
24
24
import sys
 
25
import logging
25
26
 
26
27
import ivle.conf
27
28
 
 
29
logging.basicConfig(
 
30
    format='%(asctime)s %(levelname)s %(message)s',
 
31
    level=logging.INFO)
 
32
 
28
33
if os.path.exists(ivle.conf.data_path):
29
 
    sys.exit('%s already exists - not doing anything' % ivle.conf.data_path)
 
34
    logging.info('%s already exists - not doing anything' % ivle.conf.data_path)
 
35
    sys.exit(0)
30
36
 
31
37
os.makedirs(ivle.conf.jail_base)
32
38
os.makedirs(ivle.conf.jail_src_base)