From 8b2cd62211cc599e70858b23232add72f6f58119 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 30 Nov 2013 12:49:28 +0100 Subject: [PATCH] Don't save stash on pull --- couchpotato/core/_base/updater/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/couchpotato/core/_base/updater/main.py b/couchpotato/core/_base/updater/main.py index aecf0c4f..648c2c4c 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -183,9 +183,6 @@ class GitUpdater(BaseUpdater): def doUpdate(self): try: - log.debug('Stashing local changes') - self.repo.saveStash() - log.info('Updating to latest version') self.repo.pull()