diff options
| -rw-r--r-- | UpdateManager/UpdateManager.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 7847e8d3..9a157810 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -710,7 +710,8 @@ class UpdateManager(SimpleGladeApp): # see if we have a script file that we can run script = "%s/%s" % (tmpdir, self.new_dist.name) if not os.path.exists(script): - #print "no script file found in extracted tarbal" + # FIXME: display a proper error message here + print "no script file found in extracted tarbal" else: #print "runing: %s" % script os.execv(script,[]) |
