Skip to content

Commit

Permalink
Use LinedConfigParser for Stage and Rockmeter.
Browse files Browse the repository at this point in the history
  • Loading branch information
stump committed Apr 3, 2011
1 parent 3ed1a92 commit 1029bbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Rockmeter.py
Expand Up @@ -23,7 +23,7 @@

from __future__ import with_statement

import Config
from LinedConfigParser import LinedConfigParser
import os

from Svg import ImgDrawing
Expand Down Expand Up @@ -601,7 +601,7 @@ def __init__(self, guitarScene, configFileName, coOp = False):
self.sharedlayers = [] #these layers are for coOp use only

self.coOp = coOp
self.config = Config.MyConfigParser()
self.config = LinedConfigParser()
self.config.read(configFileName)

self.themename = self.engine.data.themeLabel
Expand Down
4 changes: 2 additions & 2 deletions src/Stage.py
Expand Up @@ -25,7 +25,7 @@

from __future__ import with_statement

import Config
from LinedConfigParser import LinedConfigParser
from OpenGL.GL import *
import Log
from Shader import shaders
Expand Down Expand Up @@ -240,7 +240,7 @@ class Stage(object):
def __init__(self, guitarScene, configFileName):
self.scene = guitarScene
self.engine = guitarScene.engine
self.config = Config.MyConfigParser()
self.config = LinedConfigParser()
self.backgroundLayers = []
self.foregroundLayers = []
self.textures = {}
Expand Down

0 comments on commit 1029bbb

Please sign in to comment.