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

« back to all changes in this revision

Viewing changes to bin/ivle-createdatadirs

  • Committer: David Coles
  • Date: 2010-07-29 10:51:30 UTC
  • Revision ID: coles.david@gmail.com-20100729105130-el3ut0zwisvgvthu
Fix issue with CodeMirror being wider than the screen and scrolling.

Seems like width: 100% + padding/margin causes the actual width to be more 
than 100%. Though if the CodeMirror element just auto-calculate the width it's 
fine. Also fixed similar issue with the <textbox>.

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)