Revision: 28432
          http://sourceforge.net/p/bibdesk/svn/28432
Author:   hofman
Date:     2023-11-11 15:28:46 +0000 (Sat, 11 Nov 2023)
Log Message:
-----------
use python3 for python scripts. Decode DSA key.

Modified Paths:
--------------
    trunk/bibdesk/BibDeskHelp/postprocess-nontitle.py
    trunk/bibdesk/build_bibdesk.py
    trunk/bibdesk/build_release.py

Modified: trunk/bibdesk/BibDeskHelp/postprocess-nontitle.py
===================================================================
--- trunk/bibdesk/BibDeskHelp/postprocess-nontitle.py   2023-11-10 15:49:33 UTC 
(rev 28431)
+++ trunk/bibdesk/BibDeskHelp/postprocess-nontitle.py   2023-11-11 15:28:46 UTC 
(rev 28432)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 import sys
 

Modified: trunk/bibdesk/build_bibdesk.py
===================================================================
--- trunk/bibdesk/build_bibdesk.py      2023-11-10 15:49:33 UTC (rev 28431)
+++ trunk/bibdesk/build_bibdesk.py      2023-11-11 15:28:46 UTC (rev 28432)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 # This software is Copyright (c) 2008-2011
 # Adam Maxwell. All rights reserved.

Modified: trunk/bibdesk/build_release.py
===================================================================
--- trunk/bibdesk/build_release.py      2023-11-10 15:49:33 UTC (rev 28431)
+++ trunk/bibdesk/build_release.py      2023-11-11 15:28:46 UTC (rev 28432)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 #
 # This script is part of BibDesk.  Various paths are hardcoded near
@@ -506,7 +506,7 @@
     
     pwtask = Popen(["/usr/bin/security", "find-internet-password", "-g", "-s", 
UPLOAD_KEYCHAIN_ITEM, "-t", "dflt"], stdout=PIPE, stderr=PIPE)
     [output, error] = pwtask.communicate()
-    pwoutput = output + error
+    pwoutput = (output + error).decode("utf-8")
         
     username = None
     password = None

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to