Skip to content

Commit

Permalink
log the DLL error before exiting
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@14676 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 1, 2017
1 parent 836fa55 commit 1ce346b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,9 @@ def add_gi(*libs):
def add_DLLs(*dll_names):
try:
do_add_DLLs(*dll_names)
except:
except Exception as e:
print("Error: failed to add DLLs: %s" % (dll_names, ))
print(" %s" % e)
sys.exit(1)

def do_add_DLLs(*dll_names):
Expand Down

0 comments on commit 1ce346b

Please sign in to comment.