Don't clear pyc when develop

This commit is contained in:
Ruud
2014-06-11 09:53:52 +02:00
parent 2898a066fe
commit ef407bcb3c
+3 -1
View File
@@ -142,7 +142,9 @@ class Updater(Plugin):
}
def doShutdown(self):
self.updater.deletePyc(show_logs = False)
if not Env.get('dev'):
self.updater.deletePyc(show_logs = False)
return super(Updater, self).doShutdown()