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'.
if self.args:
a = self.args
else:
a = inary.db.packagedb.PackageDB().list_packages(repo)
a = packagedb.list_packages(repo)
else:
# Graph from installed packages database
......
......@@ -78,7 +78,7 @@ all repositories.
except:
return
else:
l = inary.db.packagedb.PackageDB().list_packages(repo)
l = self.packagedb.list_packages(repo)
installed_list = inary.db.installdb.InstallDB().list_installed()
......
......@@ -72,7 +72,7 @@ packages from all repositories.
else:
since = None
l = inary.db.packagedb.PackageDB().list_newest(repo, since)
l = self.packagedb.list_newest(repo, since)
if not l:
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