# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1273948385 -7200 # Node ID 532c545d162c64f1f8df13179ee797cc8c5f89b8 # Parent edd112855189ec29da547bbb6e6f3a5b04513e89 svncommands: add two missing imports Two imports used when printing tracebacks were missing. They were easily missed as this code isn't exercised unless an exception happens to be raised during the execution of one of the `svn' subcommands. diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- a/hgsubversion/svncommands.py +++ b/hgsubversion/svncommands.py @@ -1,6 +1,8 @@ import os import posixpath import cPickle as pickle +import sys +import traceback from mercurial import commands from mercurial import hg