diff options
-rw-r--r-- | ranger/core/fm.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ranger/core/fm.py b/ranger/core/fm.py index de22a86c..2e65c776 100644 --- a/ranger/core/fm.py +++ b/ranger/core/fm.py @@ -19,6 +19,8 @@ The File Manager, putting the pieces together from time import time from collections import deque +import os +import sys import ranger from ranger.core.actions import Actions @@ -57,6 +59,10 @@ class FM(Actions, SignalDispatcher): from ranger.shared import FileManagerAware FileManagerAware.fm = self + self.log.append('Ranger {0} started! Process ID is {1}.' \ + .format(__version__, os.getpid())) + self.log.append('Running on Python ' + sys.version.replace('\n','')) + @property def executables(self): if self._executables is None: |