diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2007-12-04 22:18:38 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2007-12-04 22:18:38 +0000 |
| commit | a5d215809f5b5425715189b5c929c496046d1ae4 (patch) | |
| tree | 5e8931b3d0424a4f98b3055f2e492bdb19078ca5 /qpid/python | |
| parent | e8fcddab9a84123df55c08ab1f6dc91c79f8ef16 (diff) | |
| download | qpid-python-a5d215809f5b5425715189b5c929c496046d1ae4.tar.gz | |
removed warnings on duplicate constants, the issue will go away with 0-10 final
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@601112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/spec.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/python/qpid/spec.py b/qpid/python/qpid/spec.py index 537ced113b..623b2e9e9f 100644 --- a/qpid/python/qpid/spec.py +++ b/qpid/python/qpid/spec.py @@ -372,7 +372,8 @@ def load(specfile, *errata): try: spec.constants.add(const) except ValueError, e: - print "Warning:", e + pass + #print "Warning:", e # domains are typedefs structs = [] |
