Changeset 317 for trunk/config.py


Ignore:
Timestamp:
08/06/09 06:28:35 (3 years ago)
Author:
marc
Message:

Improved makefile to work with prefixes, fixed errors, improved manpag and readme, and fix a configuration error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/config.py

    r288 r317  
    5858 
    5959#: To be changed on install to specify where the installed files actually are 
    60 image_prefix = '/usr/share/itaka/images/' 
     60image_prefix = '/usr/local/share/itaka/images/' 
    6161if os.path.exists(image_prefix): 
    6262    image_dir = image_prefix 
     
    6767 
    6868#: Save path for screenshots (system-specific specified later on) 
    69 save_path = os.getcwd() 
     69try: 
     70    save_path = os.getcwd() 
     71except: 
     72    print "[*] WARNING: Could not get current directory" 
    7073 
    7174""" Console output verbosity 
Note: See TracChangeset for help on using the changeset viewer.