[geneagrapher] 68/226: Removed "import *" and modified code accordingly.
Doug Torrance
dtorrance-guest at moszumanska.debian.org
Sat Jul 11 17:10:44 UTC 2015
This is an automated email from the git hooks/post-receive script.
dtorrance-guest pushed a commit to branch master
in repository geneagrapher.
commit 76fdf16cb16d2073b2bf546fea627645713e0b7b
Author: David Alber <alber.david at gmail.com>
Date: Mon Sep 29 06:02:39 2008 +0000
Removed "import *" and modified code accordingly.
---
geneagrapher/ggrapher.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/geneagrapher/ggrapher.py b/geneagrapher/ggrapher.py
index 0acca0c..9d35279 100644
--- a/geneagrapher/ggrapher.py
+++ b/geneagrapher/ggrapher.py
@@ -1,11 +1,11 @@
-from geneagrapher import *
+import geneagrapher
def ggrapher():
- geneagrapher = Geneagrapher()
+ ggrapher = geneagrapher.Geneagrapher()
try:
- geneagrapher.parseInput()
+ ggrapher.parseInput()
except SyntaxError, e:
- print geneagrapher.parser.get_usage()
+ print ggrapher.parser.get_usage()
print e
- geneagrapher.buildGraph()
- geneagrapher.generateDotFile()
+ ggrapher.buildGraph()
+ ggrapher.generateDotFile()
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/geneagrapher.git
More information about the debian-science-commits
mailing list