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

Commit

Permalink
ignore absence of gtk when testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Frasca committed Jan 2, 2015
1 parent 9cb6683 commit 1cef9bc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions bauble/plugins/report/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@
import traceback
import re

import gobject
import gtk

try:
import gtk
import gobject
except:
from bauble.fake_gtk import gtk, gobject

from sqlalchemy import *

import bauble
Expand Down

0 comments on commit 1cef9bc

Please sign in to comment.