From: Felix Domke Date: Fri, 8 Feb 2008 00:01:04 +0000 (+0000) Subject: stop writing progress after profile_final X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=1ed7644aa25453750f78f83e4bddfc82505e1b06 stop writing progress after profile_final --- diff --git a/lib/python/Tools/Profile.py b/lib/python/Tools/Profile.py index 1c44bc8..7e61da0 100644 --- a/lib/python/Tools/Profile.py +++ b/lib/python/Tools/Profile.py @@ -1,3 +1,4 @@ +# the implementation here is a bit crappy. import time from Directories import resolveFilename, SCOPE_SYSETC @@ -27,13 +28,14 @@ def profile(id): now = time.time() - profile_start if profile_file: profile_file.write("%.2f\t%s\n" % (now, id)) - if id in profile_data: - t = profile_data[id] - perc = t * (PERCENTAGE_END - PERCENTAGE_START) / total_time + PERCENTAGE_START - try: - open("/proc/progress", "w").write("%d \n" % perc) - except IOError: - pass + + if id in profile_data: + t = profile_data[id] + perc = t * (PERCENTAGE_END - PERCENTAGE_START) / total_time + PERCENTAGE_START + try: + open("/proc/progress", "w").write("%d \n" % perc) + except IOError: + pass def profile_final(): global profile_file