From d2b0cee9fa07f41aee79d4018417baa738d7992b Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 9 May 2024 14:17:59 +0200 Subject: fix(hm/conf/python): Correctly tell python to use a history file --- hm/soispha/conf/python/pythonrc | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 hm/soispha/conf/python/pythonrc (limited to 'hm/soispha/conf/python/pythonrc') diff --git a/hm/soispha/conf/python/pythonrc b/hm/soispha/conf/python/pythonrc deleted file mode 100644 index 9173e131..00000000 --- a/hm/soispha/conf/python/pythonrc +++ /dev/null @@ -1,11 +0,0 @@ -import os -import atexit -import readline - -history = os.path.join(os.environ['XDG_DATA_HOME'], 'python/history.py') -readline.read_history_file(history) - -def write_history(): - readline.write_history_file(history) - -atexit.register(write_history) -- cgit 1.4.1