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 bb41e7b commit 86b71d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bauble/plugins/users/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
import os
import re

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

from sqlalchemy import *
from sqlalchemy.exc import *
from sqlalchemy.orm.exc import *
Expand Down

0 comments on commit 86b71d2

Please sign in to comment.