diff options
author | Clement Bourgeois <moonpyk@gmail.com> | 2010-04-15 08:13:41 +0800 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-04-15 08:19:00 +0800 |
commit | 6aa479f23289c5c812a7c2dd54f754aee28cd294 (patch) | |
tree | de6c9b2e23d09416a1aab5258ce3f04e6da0e318 /plugins/new_version.py | |
parent | e5b5b6793999a5094832b1819cc6b5e5e5f0ca39 (diff) | |
download | portato-6aa479f23289c5c812a7c2dd54f754aee28cd294.tar.gz portato-6aa479f23289c5c812a7c2dd54f754aee28cd294.tar.bz2 portato-6aa479f23289c5c812a7c2dd54f754aee28cd294.zip |
Fixed dependancy of the new_version plugin from "dev-util/git" to "dev-vcs/git" to follow new Gentoo portage tree modifications
Diffstat (limited to '')
-rw-r--r-- | plugins/new_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/new_version.py b/plugins/new_version.py index 876beea..59c7328 100644 --- a/plugins/new_version.py +++ b/plugins/new_version.py @@ -24,7 +24,7 @@ class NewVersionFinder(WidgetPlugin): Checks for a new version of portato every 30 minutes and on startup. """ __author__ = "René 'Necoro' Neumann" - __dependency__ = ["dev-util/git"] + __dependency__ = ["dev-vcs/git"] def init (self): self.add_call("main", self.run) |