aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-03-23 12:54:55 +0100
committercedricbonhomme <devnull@localhost>2010-03-23 12:54:55 +0100
commit7b2b847c267344d8ad44f4733de9288a03fef5d6 (patch)
tree019095917b43281aa635b93a905834595159dae3
parentBug fix: when the database do not exists at first launch. (diff)
downloadnewspipe-7b2b847c267344d8ad44f4733de9288a03fef5d6.tar.gz
newspipe-7b2b847c267344d8ad44f4733de9288a03fef5d6.tar.bz2
newspipe-7b2b847c267344d8ad44f4733de9288a03fef5d6.zip
Minor bug fix.
-rwxr-xr-xpyAggr3g470r.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index a9ffd87a..c7b2e94f 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -650,8 +650,7 @@ if __name__ == '__main__':
root = Root()
if not os.path.isfile(utils.sqlite_base):
utils.create_base()
- else:
- root.update()
+ root.update()
try:
import gamin
thread_watch_base = threading.Thread(None, root.watch_base, None, ())
bgstack15