diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 18:07:46 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 18:07:46 +0200 |
commit | 3eec058b29cc37af8ff116926d4273b377c7471b (patch) | |
tree | 012864e3d7fce39e419dd70aa1cbabb347231b82 /pyload/database/Backend.py | |
parent | [config] Use get method instead dict access (diff) | |
download | pyload-3eec058b29cc37af8ff116926d4273b377c7471b.tar.xz |
Fix comments
Diffstat (limited to 'pyload/database/Backend.py')
-rw-r--r-- | pyload/database/Backend.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/database/Backend.py b/pyload/database/Backend.py index 116241a13..45a5c7361 100644 --- a/pyload/database/Backend.py +++ b/pyload/database/Backend.py @@ -129,12 +129,12 @@ class DatabaseBackend(Thread): def run(self): """main loop, which executes commands""" - convert = self._checkVersion() #returns None or current version + convert = self._checkVersion() #: returns None or current version self.conn = sqlite3.connect("files.db") chmod("files.db", 0600) - self.c = self.conn.cursor() #compatibility + self.c = self.conn.cursor() #: compatibility if convert is not None: self._convertDB(convert) |