summaryrefslogtreecommitdiff
path: root/dotbot
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2016-01-15 01:21:16 -0500
committerAnish Athalye <me@anishathalye.com>2016-01-15 01:21:16 -0500
commit582edd6bd36e8b40a37a8aaaa013704b5cd73ad6 (patch)
treeb1b192cf48a860ce9d7605173e865ab76a80abf5 /dotbot
parent47ad7f4d3b69315e25ae96099fe73b4d9cd7666e (diff)
Fix compatibility with Python 3
This patch removes a stray print statement that was causing problems with Python 3.
Diffstat (limited to 'dotbot')
-rw-r--r--dotbot/config.py1
1 files changed, 0 insertions, 1 deletions
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: