Fix: add missing void param to bt_clock_class_priority_map_create
[babeltrace.git] / bindings / python / bt2 / utils.py
index 52133a58f7a70318119975db2050e6d5524ebd85..294fadb6edc91a4bc1952dab96f8f08545ed50ed 100644 (file)
@@ -1,6 +1,6 @@
 # The MIT License (MIT)
 #
-# Copyright (c) 2016 Philippe Proulx <pproulx@efficios.com>
+# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the "Software"), to deal
@@ -88,7 +88,6 @@ def _is_pow2(v):
 def _check_alignment(a):
     _check_uint64(a)
 
-
     if not _is_pow2(a):
         raise ValueError('{} is not a power of two'.format(a))
 
This page took 0.038007 seconds and 4 git commands to generate.