Stephen Warren wrote:
> Version 6 of congruity is released.
> 
> congruity is a Python/wxPython-based GUI for libconcord. It is intended
> to handle downloads from the Harmony website, program the remote, and
> communicate results back to the website - i.e. provide an open-source
> replacement for the website interaction portion of the existing
> proprietary GUI application.

I'm getting a syntax error - though I have made no attempt to debug it:

  [EMAIL PROTECTED] congruity-6]$ congruity
    File "/usr/bin/congruity", line 58
      finally:
            ^
  SyntaxError: invalid syntax


Also, attached is a Makefile for ya.

-- 
Phil Dibowitz                             [EMAIL PROTECTED]
Open Source software and tech docs        Insanity Palace of Metallica
http://www.phildev.net/                   http://www.ipom.com/

"Never write it in C if you can do it in 'awk';
 Never do it in 'awk' if 'sed' can handle it;
 Never use 'sed' when 'tr' can do the job;
 Never invoke 'tr' when 'cat' is sufficient;
 Avoid using 'cat' whenever possible" -- Taylor's Laws of Programming

PREFIX?=/usr
BIN=bin
BINDIR=$(PREFIX)/$(BIN)
SHAREDIR=$(PREFIX)/share
INSTALL?=/usr/bin/install
STRIP?=/usr/bin/strip

install:
        $(INSTALL) -D --mode=755 congruity $(BINDIR)/congruity
        mkdir -p $(SHAREDIR)
        $(INSTALL) -D --mode=644 icon-complete.png icon-in-progress.png \
                remote.png icon-failed.png icon-unstarted.png \
                $(SHAREDIR)/congruity

uninstall:
        /bin/rm -f $(BINDIR)/congruity
        /bin/rm -rf $(SHAREDIR)/congruity

Attachment: signature.asc
Description: OpenPGP digital signature

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
concordance-devel mailing list
concordance-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/concordance-devel

Reply via email to