Skip to content

Commit

Permalink
Changed Spining to clockwise for jupyter lab build
Browse files Browse the repository at this point in the history
  • Loading branch information
adityar-r committed Sep 8, 2019
1 parent a104919 commit 8635780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlab/commands.py
Original file line number Diff line number Diff line change
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 8635780

Please sign in to comment.