Unverified Kaydet (Commit) 491a8c48 authored tarafından Suleyman Poyraz's avatar Suleyman Poyraz Kaydeden (comit) GitHub

Merge pull request #4 from Zaryob/master

Yavaşlama sorunu  giderildi.
...@@ -79,7 +79,7 @@ the package in graphviz format to 'pgraph.dot'. ...@@ -79,7 +79,7 @@ the package in graphviz format to 'pgraph.dot'.
if self.args: if self.args:
a = self.args a = self.args
else: else:
a = inary.db.packagedb.PackageDB().list_packages(repo) a = packagedb.list_packages(repo)
else: else:
# Graph from installed packages database # Graph from installed packages database
......
...@@ -78,7 +78,7 @@ all repositories. ...@@ -78,7 +78,7 @@ all repositories.
except: except:
return return
else: else:
l = inary.db.packagedb.PackageDB().list_packages(repo) l = self.packagedb.list_packages(repo)
installed_list = inary.db.installdb.InstallDB().list_installed() installed_list = inary.db.installdb.InstallDB().list_installed()
......
...@@ -72,7 +72,7 @@ packages from all repositories. ...@@ -72,7 +72,7 @@ packages from all repositories.
else: else:
since = None since = None
l = inary.db.packagedb.PackageDB().list_newest(repo, since) l = self.packagedb.list_newest(repo, since)
if not l: if not l:
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment