Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
fix incorrect import paths in features.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Jan 11, 2017
1 parent 3c26638 commit f5704a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions cnchi/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@

class Graphics(object):
def nvidia(self):
from hardware.nvidia import Nvidia
from hardware.modules.nvidia import Nvidia
if Nvidia().detect():
return True
from hardware.nvidia_340xx import Nvidia340xx
from hardware.modules.nvidia_340xx import Nvidia340xx
if Nvidia340xx().detect():
return True
from hardware.nvidia_304xx import Nvidia304xx
from hardware.modules.nvidia_304xx import Nvidia304xx
if Nvidia304xx().detect():
return True
return False

def amd(self):
from hardware.catalyst import Catalyst
from hardware.modules.catalyst import Catalyst
return Catalyst().detect()

def i915(self):
from hardware.i915 import Intel915
from hardware.modules.i915 import Intel915
return Intel915().detect()

def bumblebee(self):
Expand Down
2 changes: 1 addition & 1 deletion cnchi/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

""" Set some Cnchi global constants """

CNCHI_VERSION = "0.14.226"
CNCHI_VERSION = "0.14.227"
CNCHI_WEBSITE = "http://www.antergos.com"
CNCHI_RELEASE_STAGE = "production"

Expand Down
2 changes: 1 addition & 1 deletion update.info
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{"version":"0.14.226","files":[
{"version":"0.14.227","files":[
]}

0 comments on commit f5704a2

Please sign in to comment.