Ignore:
Timestamp:
05/02/05 04:44:42 (19 years ago)
Author:
Nicholas Riley
Message:

screenshot.py: On Tiger, don't worry if the output file doesn't exist.

setup.py: Use data_files instead of py2app resources, per Bob
Ippolito; it works equivalently and preserves permissions on
error.sh.

error.sh: Custom error handling.

Location:
trunk/1001Screenshot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/1001Screenshot

    • Property svn:ignore set to
      .gdb_history
      .DS_Store
      build
      dist
  • trunk/1001Screenshot/screenshot.py

    r174 r175  
    106106else:
    107107    check(args, output, retval)
     108    if not os.path.exists(outFile):
     109        # something could have gone wrong, or user cancelled, we don't know
     110        sys.exit(0)
    108111    writtenPaths = [outFile]
    109112
Note: See TracChangeset for help on using the changeset viewer.