diff options
-rw-r--r-- | octave_kernel.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/octave_kernel.py b/octave_kernel.py index 4d79676..cbfb759 100644 --- a/octave_kernel.py +++ b/octave_kernel.py @@ -52,7 +52,8 @@ class OctaveKernel(Kernel): self.log.setLevel(logging.ERROR) try: - self.hist_file = os.path.join(locate_profile(), 'octave_kernel.hist') + self.hist_file = os.path.join(locate_profile(), + 'octave_kernel.hist') except IOError: self.hist_file = None self.log.warn('No default profile found, history unavailable') |