summaryrefslogtreecommitdiffstats
path: root/xf86config.py
diff options
context:
space:
mode:
Diffstat (limited to 'xf86config.py')
-rw-r--r--xf86config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/xf86config.py b/xf86config.py
index 34b332a98..999437648 100644
--- a/xf86config.py
+++ b/xf86config.py
@@ -824,14 +824,14 @@ class XF86Config:
return probe
def write (self, path):
- config = open (path + "XF86Config", 'w')
+ config = open (path + "/XF86Config", 'w')
config.write (self.Version3Config ())
config.close ()
try:
config4 = self.Version4Config ()
except RuntimeError:
return
- config = open (path + "XF86Config-4", 'w')
+ config = open (path + "/XF86Config-4", 'w')
config.write (config4)
config.close ()