Skip to content

Commit

Permalink
improve builtin types, fix binOp logic (yinwang0#79)
Browse files Browse the repository at this point in the history
* make copyJarResourcesRecursively print stacktrace when exception is catched

* improve builtin types

* Correctly dealing with Or/And when some of the operand is None
  • Loading branch information
zfy0701 authored and yinwang0 committed Nov 22, 2016
1 parent f257aca commit 261a5fc
Show file tree
Hide file tree
Showing 3 changed files with 510 additions and 404 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/yinwang/pysonar/$.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public static void copyJarResourcesRecursively(File destination, JarURLConnectio
entryInputStream = jarFile.getInputStream(entry);
FileUtils.copyInputStreamToFile(entryInputStream, new File(destination, fileName));
} catch (Exception e) {
die("Failed to copy resource: " + fileName);
die("Failed to copy resource: " + fileName, e);
} finally {
if (entryInputStream != null) {
try {
Expand Down
Loading

0 comments on commit 261a5fc

Please sign in to comment.