File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -140,4 +140,9 @@ Version 2.0.0 (April 14, 2022)
140140
141141Version 2.0.1 (Mai 30, 2022)
142142-----------------------------------
143- * HotFix: removing complexity of git2net calculation
143+ * HotFix: removing complexity of git2net calculation
144+
145+
146+ Version 2.0.2 (August 1, 2022)
147+ -----------------------------------
148+ * HotFix: fix wait for reset request limit
Original file line number Diff line number Diff line change 1- __version__ = '2.0.1 '
1+ __version__ = '2.0.2 '
Original file line number Diff line number Diff line change @@ -433,7 +433,7 @@ def wait_for_reset(self) -> None:
433433 self .logger .debug ("Waiting for request limit refresh ..." )
434434 self .github_connection .get_rate_limit ()
435435 reset_timestamp = self .github_connection .rate_limiting_resettime
436- seconds_until_reset = reset_timestamp - time ()
436+ seconds_until_reset = reset_timestamp - time . time ()
437437 sleep_step_width = 1
438438 sleeping_range = range (math .ceil (seconds_until_reset / sleep_step_width ))
439439 for i in self .progress_bar (sleeping_range , "Sleeping : " , 60 ):
You can’t perform that action at this time.
0 commit comments