Skip to content

Commit

Permalink
merged in master
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Oct 26, 2018
2 parents 4dafdb0 + 5b31194 commit edfa1e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
else:
start_value += 1

except Exception as e:
except Exception:
# if boomed. end so that we can get iobuf
traceback.print_exc()
2 changes: 1 addition & 1 deletion spinnaker_graph_front_end/examples/speed_tracker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@
start_value += 1


except Exception as e:
except Exception:
# if boomed. end so that we can get iobuf
traceback.print_exc()
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@
print("Read {} MB in {} seconds ({} Mb/s)".format(mbs, seconds, speed))


except Exception as e:
except Exception:
# if boomed. end so that we can get iobuf
traceback.print_exc()
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
print("Read {} MB in {} seconds ({} Mb/s)".format(mbs, seconds, speed))


except Exception as e:
except Exception:
# if boomed. end so that we can get iobuf
traceback.print_exc()
sim.stop()

0 comments on commit edfa1e2

Please sign in to comment.