From 582edd6bd36e8b40a37a8aaaa013704b5cd73ad6 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Fri, 15 Jan 2016 01:21:16 -0500 Subject: [PATCH] Fix compatibility with Python 3 This patch removes a stray print statement that was causing problems with Python 3. --- dotbot/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dotbot/config.py b/dotbot/config.py index 39ab60b..53a9178 100644 --- a/dotbot/config.py +++ b/dotbot/config.py @@ -11,7 +11,6 @@ class ConfigReader(object): try: _, ext = os.path.splitext(config_file_path) with open(config_file_path) as fin: - print ext if ext == '.json': data = json.load(fin) else: