Skip to content

Commit

Permalink
Merge pull request #7170 from bw-space/master
Browse files Browse the repository at this point in the history
Changed Spining to clockwise for jupyter lab build
  • Loading branch information
blink1073 committed Sep 8, 2019
2 parents a104919 + 8635780 commit c027a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlab/commands.py
Expand Up @@ -88,7 +88,7 @@ def wait(self):
proc = self.proc
kill_event = self._kill_event
import itertools
spinner = itertools.cycle(['-', '/', '|', '\\'])
spinner = itertools.cycle(['-', '\\', '|', '/'])
while proc.poll() is None:
sys.stdout.write(next(spinner)) # write the next character
sys.stdout.flush() # flush stdout buffer (actual character display)
Expand Down

0 comments on commit c027a58

Please sign in to comment.